JNotify文件变化通知

本文介绍如何使用JNotify库在Java中动态监控指定目录下的文件和文件夹变化,包括创建、修改、删除和重命名事件,并通过自定义监听器接收这些事件。

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



JNotify,一个支持动态监控文件和文件夹(支持级联监控)的架包。在windows中,需要添加附件的dll文件,因为windows默认没有该服务,这是大拿们自己开发的一个功能。 


1,将jnotify包引入到工程中。
2,将jnotify依赖的dll文件加入到java.library.path路径中。这个变量可能会有多个位置,随便将jnotify压缩包中附带的libjnotify.so文件加入到其中的任何一个路径中即可。如果不知道这个变量的值,可以使用System.getProperty("java.library.path")查看。


package org.liufeng.weixin.util;

import net.contentobjects.jnotify.JNotify;
import net.contentobjects.jnotify.JNotifyListener;

public class Test {

 public static void main(String[] args) {
  try {
   new Test().sample();
  } catch (Exception e) {
   e.printStackTrace();
  }
 }
 
 


 public void sample() throws Exception {
  // path to watch
  String path = "D:/logs";

  // watch mask, specify events you care about,
  // or JNotify.FILE_ANY for all events.
 
  int mask = JNotify.FILE_CREATED | JNotify.FILE_DELETED
    | JNotify.FILE_MODIFIED | JNotify.FILE_RENAMED;

  // watch subtree?
  boolean watchSubtree = true;

  // add actual watch
  int watchID = JNotify
    .addWatch(path, mask, watchSubtree, new Listener());

  // sleep a little, the application will exit if you
  // don't (watching is asynchronous), depending on your
  // application, this may not be required
  Thread.sleep(1000000);

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

        //可以在下面的监控方法中添加自己的代码。比如在fileModified中添加重新加载配置文件的代码
 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);
  }

 }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值