使用JNotify监控硬盘

本文介绍如何使用JNotify库实现硬盘文件变动监控,包括文件创建、删除、修改和重命名等事件监听。适用于在线文档转换等场景。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

String path = "c:/test";
int mask =  JNotify.FILE_CREATED | 
			JNotify.FILE_DELETED | 
			JNotify.FILE_MODIFIED| 
			JNotify.FILE_RENAMED;
boolean watchSubtree = true;
int watchID = JNotify.addWatch(path, mask, watchSubtree, new JNotifyListener()
{
	public void fileRenamed(int wd, String rootPath, String oldName, String newName)
	{
		System.out.println("JNotifyTest.fileRenamed() : wd #" + wd + " root = " + rootPath + ", " + oldName + " -> " + newName);
	}

	public void fileModified(int wd, String rootPath, String name)
	{
		System.out.println("JNotifyTest.fileModified() : wd #" + wd + " root = " + rootPath + ", " + name);
	}

	public void fileDeleted(int wd, String rootPath, String name)
	{
		System.out.println("JNotifyTest.fileDeleted() : wd #" + wd + " root = " + rootPath
				+ ", " + name);
	}

	public void fileCreated(int wd, String rootPath, String name)
	{
		System.out.println("JNotifyTest.fileCreated() : wd #" + wd + " root = " + rootPath
				+ ", " + name);
	}
});




// to remove watch:
boolean res = JNotify.removeWatch(watchID);
if (!res)
{
	// invalid watch ID specified.
}


硬盘监控在很多场合都很有用处,例如在线文档转换,只要监控到有文件写入,即可触发在线文档转换程序。JNotify支持windowsLinux两大操作系统,并且支持64位的机器,在使用JNotify时,需要手动将JNotify.dll或者libjnotify.so复制到JREbin目录下,然后在你的JAVA工程编写如下代码:

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

lishengbo

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值