Java 7 Watch Service ENTRY_CREATE triggered before file is written

a 夏天 提交于 2019-11-27 22:30:58

问题


I have a watch service watching a directory. Once files are created, I'm processing the directory and updating a tree view.

This works fine on ENTRY_DELETE, but sometimes (not always) when a WatchEvent of ENTRY_CREATE occurs, the file has not yet been written to the disk.

I've confirmed this by creating a new File() of the directory the watch service is registered to along with the path of the file and checking the exists() method, so it seems that the OS is triggering the create event before the file is actually created.

This question appears to be the same issue, but from the folder's point of view.

Any way I can work around this?


回答1:


The event is triggered when a file is created. The file needs to be created before it can be written to. A file doesn't simply appear once it is fully written, it appears once it is created.

What you can do is once you get the creation event:

  • Create a File object to point to the file
  • Create a java.nio.channels.FileChannel for random access using RandomAccessFile with rw mode (so read & write access)
  • Lock the channel. This will block until the file is free for read/write access (read the more general Lock method for more info)
  • When the lock is acquired, your file was released by the process that wrote the file

A simplified example:

File lockFile = new File( "file_to_lock" );
FileChannel channel = new RandomAccessFile( lockFile, "rw" ).getChannel( );
channel.lock( );



回答2:


I had the same issue, I added few seconds delay once the event is created before processing. Since Other application used to write the file and it used to take couple of seconds to flush the content and release the file.



来源:https://stackoverflow.com/questions/34671792/java-7-watch-service-entry-create-triggered-before-file-is-written

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!