java 监听文件夹变化_java 监听文件或者文件夹变化的几种方式

本文介绍如何使用Java的WatchService API监听文件或文件夹的变化,包括创建、修改和删除事件。通过创建ExecutorService线程池,实现对多个路径的监听,并在事件发生时打印相关信息。
摘要由CSDN通过智能技术生成

packagecom.jp.filemonitor;importjava.io.IOException;importjava.nio.file.FileSystems;importjava.nio.file.Path;importjava.nio.file.Paths;importjava.nio.file.StandardWatchEventKinds;importjava.nio.file.WatchEvent;importjava.nio.file.WatchKey;importjava.nio.file.WatchService;importjava.util.List;importjava.util.concurrent.ExecutorService;importjava.util.concurrent.Executors;public classResourceListener {private static ExecutorService fixedThreadPool =Executors.newCachedThreadPool();privateWatchService ws;privateString listenerPath;privateResourceListener(String path) {try{

ws=FileSystems.getDefault().newWatchService();this.listenerPath =path;

start();

}catch(IOException e) {

e.printStackTrace();

}

}private voidstart() {

fixedThreadPool.execute(new Listner(ws,this.listenerPath));

}public static void addListener(String path) throwsIOException {

ResourceListener resourceListener= newResourceListener(path);

Path p=Paths.get(path);

p.register(resourceListener.ws,StandardWatchEventKinds.ENTRY_MODIFY,

StandardWatchEventKinds.ENTRY_DELETE,

StandardWatchEventKinds.ENTRY_CREATE);

}public static void main(String[] args) throwsIOException {

ResourceListener.addListener("F:\\");

ResourceListener.addListener("d:\\");

}

}class Listner implementsRunnable {privateWatchService service;privateString rootPath;publicListner(WatchService service,String rootPath) {this.service =service;this.rootPath =rootPath;

}public voidrun() {try{while(true){

WatchKey watchKey=service.take();

List> watchEvents =watchKey.pollEvents();for(WatchEvent>event : watchEvents){//TODO 根据事件类型采取不同的操作。。。。。。。

System.out.println("["+rootPath+event.context()+"]文件发生了["+event.kind()+"]事件"+event.count());

}

watchKey.reset();

}

}catch(InterruptedException e) {

e.printStackTrace();

}finally{

System.out.println("fdsfsdf");try{

service.close();

}catch(IOException e) {

e.printStackTrace();

}

}

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值