Datasets:

ArXiv:
License:
Stack-Repo / data /train /akash-coded /FSD_Java /Lesson-3 /File Handling /Examples /FileInputStreamExample2.java
denisko's picture
cnanged dir structure and removed features file
3e77472
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);
}
}
}