Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame contribute delete
402 Bytes
import java.io.FileInputStream;
public class FileInputStreamExample2 {
public static void main(String args[]) {
try (FileInputStream fin = new FileInputStream("testout2.txt")) {
int i = 0;
while ((i = fin.read()) != -1) {
System.out.print((char) i);
}
} catch (Exception e) {
System.out.println(e);
}
}
}