Hello,
I am reading a text file using FileReader and BufferedReader.
Is there a way a checking the EOF ?
I set an EOF attrubute to true when
.Code:br = BufferedReader(fr);
br.readLine() == null;
Is there another way of checking the EOF
ex : br.EOF;
thanks

