在Java中,如何同时监控多个日志文件
我想同时监控多个日志文件。用java怎么做?
i want to monitor several log files concurrently .How to do in java ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想同时监控多个日志文件。用java怎么做?
i want to monitor several log files concurrently .How to do in java ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
很难理解你想要做什么,所以我会猜测:)
使用名为 Tailer 来跟踪您想要跟踪的文件。 (如果您想要阅读它们)。该类的 javadoc 提供了如何将其与线程一起使用的示例。
Hard to understand what you want to do, so I will guess :)
Use the Apache Commons IO class named Tailer to tail the files that you want to keep track of. (If reading from them is what you want to do). The javadoc for the class has examples of how to use it with threads.