Java tutorial
import java.io.FileInputStream; import java.io.InputStream; public class Main { public static void main(String[] args) throws Exception { int i = 0; // new input stream created InputStream is = new FileInputStream("C://test.txt"); // read till the end of the stream while ((i = is.read()) != -1) { // convert integer to character char c = (char) i; // print System.out.println("Character Read: " + c); } is.close(); } }