java 监控文件夹变化(钩子文件)

1. 线程轮询扫描 
优点:纯java实现,完美跨平台。 
缺点:监听文件较多时,需要扫描的量太大;响应不是非常及时,依赖于扫描间隔时间。 

2. 文件钩子 
优点:事件驱动方式,无目录扫描。 
缺点:跟平台相关 

Jnotify开发包是个不错的文件钩子库,使用方式如下:

public class FieMonitor {
	public static void main(String[] args) {
		String monitedPath = "E:/templete";
		int mask = JNotify.FILE_CREATED | JNotify.FILE_DELETED | JNotify.FILE_MODIFIED | JNotify.FILE_RENAMED;
		// 是否监视子目录
		boolean watchSubtree = true;
		try {
			int watchID = JNotify.addWatch(monitedPath, mask, watchSubtree,new Listener());
			Thread.sleep(1000000);
			boolean res = JNotify.removeWatch(watchID);
			if (!res) {
				// invalid
			}
		} catch (Exception e) {
			e.printStackTrace();
		}

	}

	public static class Listener implements JNotifyListener {
		public void fileRenamed(int wd, String rootPath, String oldName,String newName) {
			print("renamed " + rootPath + " : " + oldName + " -> " + newName);
		}

		public void fileModified(int wd, String rootPath, String name) {
			print("modified " + rootPath + " : " + name);
		}

		public void fileDeleted(int wd, String rootPath, String name) {
			print("deleted " + rootPath + " : " + name);
		}

		public void fileCreated(int wd, String rootPath, String name) {
			print("created " + rootPath + " : " + name);
		}

		void print(String msg) {
			System.err.println(msg);
		}
	}
}




官网的jar下载,请 戳我

额外说明:win下面rename一个文件,产生2个事件 rename和 modify 

这个库还有个缺点:要在java.library.path下加入依赖的dll (jnotify.dll/jnotify_64bit.dll),让本人非常不爽。 跟进源码,发现是用的

System.loadLibrary("jnotify")

加载,难怪。遂将其改为 

System.load("xxxx/jnotify.dll")方式,将dll、so等文件放到项目指定目录下。然后,修改jnotify.jar的源码。

这里我是win环境,就修改jnotify-0.94.jar\net\contentobjects\jnotify\win32\JNotify_win32.class文件。

官网代码


修改后的代码


我这里是把文件放在项目的“WebContent/WEB-INF/lib/dll/” 目录下


Tips:

System.load VS System.loadLibrary();

System.load()要求绝对路径。






评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值