欢迎来到天天文库
浏览记录
ID:52605884
大小:60.50 KB
页数:1页
时间:2020-03-29
《关于硬盘监控技术.doc》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、使用JNotify监控硬盘硬盘监控在很多场合都很行用处,例如在线文档转换,只要监控到有文件写入,即可触发在线文档转换程序oJNotify支持windows和Linux两大操作系统,并且支持64位的机器,在使用JNotify时,需要手动将JNotify.dll或者libjnotify.so复制到JRE的bin目录下,然后在你的JAVA工程编写如下代码:Stringpath="c:/test";intmask二JNotify.FILE_CREATEDJNotify.FILE_DELETEDJNotify.FILEMODIFIED
2、JNotify
3、.FILERENAMED;booleanwatchSubtree=true;intwatchlD=JNotify.addWatch(path,mask,watchSubtree,newJNotifyListener(){publicvoidfileRenamed(intwd,StringrootPath,StringoldName,StringnewName){System.out.println("JNotifyTest・fileRendmed():wd#"+wd+"root二"+rootPath+“,"+oldName+"->"+new
4、Name);}publicvoidfileModified(intwd,StringrootPath,Stringname){System,out.printin(z/JNotifyTest.fileModified():wd#"+wd+"root二"+rootPath+“,"+name);}publicvoidfileDeieted(intwd,StringrootPath,Stringname)(System,out.printin(/zJNotifyTest.fileDeletedO:wd#"+wd+"root二"+rootPath+
5、+name);}publicvoidfileCreated(intwd,StringrootPath,Stringname){System,out.println("JNotifyTest.fileCreatedO:wd+wd+"root="+rootPath+",+name);}});//toremovewatch:booleanres二JNotify.removeWatch(watchlD);if(!res){//invalidwatchIDspecified.}
此文档下载收益归作者所有