我正在使用java Tail-listener API来执行tailf函数(在Linux中).ie,只要在日志文件中更新日志消息,此API就会打印消息。
我的代码如下。
public static void main(String[] args) {
// TODO code application logic here
File pcounter_log = new File("\vat\temp\test.log");
try {
TailerListener listener = new PCTailListener();
Tailer tailer = new Tailer(pcounter_log, listener, 5000, true);
Thread thread = new Thread(tailer);
thread.start();
} catch (Exception e) {
System.out.println(e);
}
}
public class PCTailListener extends TailerListenerAdapter {
public void handle(String line) {
System.out.println(line);
}
}
最初它的工作正常。一段时间后,它读取旧的日志消息(在此应用程序启动时生成的日志消息)。它也在阅读新的日志消息。如何避免读取已经监视的日志消息。如何做到这一点