开启写线程、读线程,将实时信息打印在控制台。
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文件重命名,发现依旧可以实时读。