gpt4 book ai didi

java - 更改 WatchService 的状态

转载 作者:行者123 更新时间:2023-11-30 02:02:44 25 4
gpt4 key购买 nike

我正在编写一个应用程序,它将扫描目录中新添加的文件,然后使用 WatchService 对它们进行一些处理。这部分正在按预期工作。现在,我需要编写代码来处理在服务启动之前添加到目录中的文件。

简单的方法是在向 WatchService 注册路径之前简单地获取文件夹中的文件列表;不过,我担心这可能会在处理预先存在的文件和监视新事件之间留下间隙,我可能会错过传入的文件。最安全的选择是开始监视事件,但不处理它们,直到我处理完已经存在的文件。

是否有某种方法可以手动将 WatchKey 的状态更改为“已发出信号”?这可以实现我的目标,但我在 WatchService 的文档中没有看到实现此目的的方法。

最佳答案

The naive approach would be to simply get a list of files in the folder before registering the path with the WatchService; I have concerns, though, that this may leave a gap between processing the pre-existing files and watching for new events, where I might miss incoming files. The safest option would be to start Watching for events, but not process them, until I've dealt with the files already present.

以下是解决问题的方法:

同时启动watch-serviceget-files-list-from-folder-process

这两个进程都将文件(文件路径)首先放入线程安全队列集合中,这允许后进先出 (LIFO) 或先进先出 (FIFO) 处理。根据需求,可以考虑java.util.concurrent.ConcurrentLinkedDequeLinkedBlockingDequeConcurrentLinkedQueueLinkedBlockingQueue。这样,所有文件都会被一个接一个地处理 - 无论它是来自 get-files-list-from-folder-process 还是 watch-service。

但是,需要进行检查以避免重复的文件处理,以确保没有文件两次添加到队列中。仅在应用程序开始时才需要此信息。实际的文件处理程序本身可以跟踪另一个集合中处理的文件 - 可用于检查文件是否已被处理。

关于java - 更改 WatchService 的状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52284606/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com