Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame contribute delete
337 Bytes
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);
}
}
}