如何使用 WatchService 监视子目录的更改? (爪哇)

发布于 2024-10-31 12:29:04 字数 340 浏览 1 评论 0原文

我想查看一些目录及其子目录的更改。我尝试使用 WatchService< 来执行此操作/code>但我不知道文件是从哪个目录更改的。如何从 观察事件

I want to watch some directory for changes and her subdirectories. I tried to do this with WatchService but I can't know from which directory the file was changed. How can I retrieve the full path from the WatchEvent?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

初雪 2024-11-07 12:29:04

通常,您在启动 watchservice 时提供文件的目录名称。这是一个演示其工作原理的教程:

https://docs.oracle .com/javase/tutorial/essential/io/notification.html
https://docs.oracle.com/javase/tutorial/ Essential/io/examples/WatchDir.java

从教程中:

   Path dir = ...;
   try {
       WatchKey key = dir.register(watcher, ENTRY_CREATE, ENTRY_DELETE, ENTRY_MODIFY);
   }[.....]

当您捕获通知时:

   //The filename is the context of the event.
   WatchEvent<Path> ev = (WatchEvent<Path>)event;
   Path filename = ev.context();

   Path child = dir.resolve(filename);

Generally you provide the directory name of the file when starting the watchservice. Here is a tutorial demonstrating how that works:

https://docs.oracle.com/javase/tutorial/essential/io/notification.html
https://docs.oracle.com/javase/tutorial/essential/io/examples/WatchDir.java

From the tutorial:

   Path dir = ...;
   try {
       WatchKey key = dir.register(watcher, ENTRY_CREATE, ENTRY_DELETE, ENTRY_MODIFY);
   }[.....]

when you catch a notification:

   //The filename is the context of the event.
   WatchEvent<Path> ev = (WatchEvent<Path>)event;
   Path filename = ev.context();

   Path child = dir.resolve(filename);
赠佳期 2024-11-07 12:29:04

对于使用 Spring 的用户

Spring 4.2 中引入了 WatchServiceDirectoryScanner。现在它还可以捕获子目录的更改。

有关更多信息,WatchServiceDirectoryScanner 上的 Javadocs

For users who use Spring:

With Spring 4.2 WatchServiceDirectoryScanner is introduced. Now it can also catch sub directory changes.

For more information, Javadocs on WatchServiceDirectoryScanner

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文