我正在寻找一种在修改某个文件时获得通知的方法。发生这种情况时,我想调用某个方法,但在某些情况下,我也希望不调用该方法。
我尝试了以下方法:
class FileListener extends Thread {
private Node n;
private long timeStamp;
public FileListener(Node n) {
this.n = n;
this.timeStamp = n.getFile().lastModified();
}
private boolean isModified() {
long newStamp = n.getFile().lastModified();
if (newStamp != timeStamp) {
timeStamp = newStamp;
return true;
} else {
return false;
}
public void run() {
while(true) {
if (isModified()) {
n.setStatus(STATUS.MODIFIED);
}
try {
Thread.sleep(1000);
} catch(Exception e) {
e.printStackTrace();
}
}
}
Node 类包含对文件的引用、STATUS(枚举)和对该文件的 FileListener 的引用。修改文件时,我希望状态更改为状态。改 性。但是,在某些情况下,节点引用的文件会更改为新文件,我不希望它自动将状态更改为"已修改"。在这种情况下,我尝试了这个:
n.listener.interrupt(); //interrupts the listener
n.setListener(null); //sets listener to null
n.setFile(someNewFile); //Change the file in the node
//Introduce a new listener, which will look at the new file.
n.setListener(new FileListener(n));
n.listener.start(); // start the thread of the new listener
但是我得到的是"Thread.sleep(1000)"抛出的异常,因为睡眠被中断了,当我检查状态时,它仍然被修改为状态。改 性。
我做错了什么吗?
手表服务怎么样:http://docs.oracle.com/javase/7/docs/api/java/nio/file/WatchService.html?
WatchService watcher = FileSystems.getDefault().newWatchService();
Path dir = ...;
try {
WatchKey key = dir.register(watcher, ENTRY_MODIFY);
} catch (IOException x) {
System.err.println(x);
}
然后:
for (;;) {
//wait for key to be signaled
WatchKey key;
try {
key = watcher.take();
} catch (InterruptedException x) {
return;
}
for (WatchEvent<?> event: key.pollEvents()) {
WatchEvent.Kind<?> kind = event.kind();
if (kind == OVERFLOW) {
continue;
}
...
}