问题描述
||
我正在使用Java Tail-listener API来执行tailf函数(在Linux中)。即,每当日志文件中的日志消息更新时,此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);
}
}
最初它可以正常工作。一段时间后,它会读取旧的日志消息(此应用程序生成时生成的日志消息被启动)。还读取新的日志消息。如何避免读取已监视的日志消息。如何执行
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)