File size: 337 Bytes
c574d3a |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import java.io.*;
public class FileInputStreamExample1 {
public static void main(String[] args) {
try (FileInputStream fin = new FileInputStream("testout1.txt")) {
char ch = (char) fin.read();
System.out.print(ch);
} catch (Exception e) {
System.out.println(e);
}
}
}
|