Java实时读取日志文件(2)

开启写线程、读线程,将实时信息打印在控制台。

import java.io.File; public class RunRun { public static void main(String[] args) { File logFile = new File("mock.log"); Thread wthread = new Thread(new LogWrite(logFile)); wthread.start(); Thread rthread = new Thread(new LogReader(logFile)); rthread.start(); } }

在读写的过程中,我们可以手动将mock.log文件重命名,发现依旧可以实时读。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/9af309da958648a007c4946feb20eb5d.html