I need to read binary file including the eof.
I read file using DataInputStream
DataInputStream instr = new DataInputStream(new BufferedInputStream(new FileInputStream( fileName ) ) );
And I used readInt(); to read binary file as an integer.
try {
while ( true){
System.out.println(instr.readInt());
sum += instr.readInt(); //sum is integer
}
} catch ( EOFException eof ) {
System.out.println( "The sum is: " + sum );
instr.close();
}
But this program doesn't read the End-of-file or last line of text(if it's text file). So if the text file is only contained only one line of text, the sum is 0. Please help me with this.
Example: if .txt file containing the text.
a
b
c
readInt(); just only reads a and b.