我必须在文件中创建一些信息,只要它们在目录中创建即可。这些文件由另一个程序自动创建。为此,我使用WatchService
来监视文件创建,并使用Scanner
来读取文件。在main方法上,我有一个简单的while(true)
,并调用了我的Watcher
类。这是构造函数:
public Watcher(String srcDir, String targetDir) throws IOException, InterruptedException {
this.srcDir = Paths.get(srcDir);
this.targetDir = Paths.get(targetDir);
this.watcher = this.srcDir.getFileSystem().newWatchService();
this.srcDir.register(watcher, StandardWatchEventKinds.ENTRY_CREATE); // this will check ONLY for new files; no
// deletions or modifications
this.key = this.watcher.take();
}
在主循环中调用的方法(我删除了部分代码,因为它不相关):
public void checkForNewFile() throws IOException {
String[] info = new String[6];
if (this.watcher != null) {
List<WatchEvent<?>> events = this.key.pollEvents();
newFileName = "";
for (WatchEvent event : events) {
// I kept getting errors when trying to get only the last event
newFileName = event.context().toString();
}
if(newFileName != "") {
System.out.println("opening new file...");
Scanner scanner = new Scanner(new FileInputStream(srcDir.toString() + "/" + newFileName));
String line;
System.out.println(scanner.hasNext());
while(scanner.hasNext()) {
line = scanner.nextLine();
System.out.println("splitting lines...");
String[] parts = line.split("|");
...
}
scanner.close();
}
this.key.reset();
}
}
在上面的方法中,当我正常运行程序时,System.out.println(scanner.hasNext());
返回false并且while
循环永远不会发生,但是在调试时,代码工作正常。
我知道这指向线程问题,但我没有明确地创建任何线程,而且这个项目甚至不需要多个线程。难道我做错了什么?我该怎么做才能让这段代码正常工作?
答案 0 :(得分:1)
我猜,你的代码会读取一个新生成的文件,其内容尚未刷新,因此没有行。在调试中,线程有更多的时间来写文件并将其刷新。
也许您可以使用文件锁来摆脱这个问题。