ログを作成していて、log.txt ファイルの最後の行を読みたいのですが、最後の行が読み取られると BufferedReader を停止するのに問題があります。
これが私のコードです:
try {
String sCurrentLine;
br = new BufferedReader(new FileReader("C:\\testing.txt"));
while ((sCurrentLine = br.readLine()) != null) {
System.out.println(sCurrentLine);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (br != null)br.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}