import java.io.File;
import java.text.SimpleDateFormat;
import java.util.Timer;
import java.util.TimerTask;

public class FileListener {
    public static void main(String[] args) {
        FileListener fileListener = new FileListener();
        fileListener.timer = new Timer(true);
        fileListener.start();
    }

    private Timer timer;

    private long currentTime = -1;

    private long lastModifiedTime = -1;

    private long times = 1;

    private long pollingInterval = 1000 * times;

    private String filePath = "c:\\test.txt";

    public FileListener() {
        File file = new File(filePath);
        lastModifiedTime = file.lastModified();
        currentTime = lastModifiedTime;
    }

    public void start() {
        timer.schedule(new FileMonitor(), 0, pollingInterval);

        while (true) {
            try {
                int ch = System.in.read();
                System.out.println("ch=" + ch);
                if (ch - 'c' == 0) {
                    System.out.println("quit");
                    timer.cancel();
                    break;
                }
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }

    private class FileMonitor extends TimerTask {
        public void run() {
            File file = new File(filePath);
            lastModifiedTime = file.exists() ? file.lastModified() : -1;
            if (currentTime != lastModifiedTime) {//1439540671443
                String string = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss SSS")
                        .format(lastModifiedTime);//1439540994156
                System.out.println("File changed At:" + string);
                currentTime = lastModifiedTime;
            }
        }
    }


}

 

相关文章:

  • 2022-12-23
  • 2021-10-01
  • 2021-12-26
  • 2022-03-07
  • 2022-12-23
  • 2022-03-08
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-15
  • 2022-12-23
  • 2022-01-15
  • 2022-12-23
  • 2022-01-01
相关资源
相似解决方案