如何使用 WatchService 监视子目录的更改? (爪哇)
我想查看一些目录及其子目录的更改。我尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常,您在启动 watchservice 时提供文件的目录名称。这是一个演示其工作原理的教程:
https://docs.oracle .com/javase/tutorial/essential/io/notification.html
https://docs.oracle.com/javase/tutorial/ Essential/io/examples/WatchDir.java
从教程中:
当您捕获通知时:
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:
when you catch a notification:
对于使用 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