共计 943 个字符,预计需要花费 3 分钟才能阅读完成。
Java 可以通过使用 Java NIO 包中的 WatchService 类来监听文件变化,并使用 Java IO 或 Java NIO 来读取文件。
以下是一种基本的使用 WatchService 监听文件变化的方法:
- 创建 WatchService 对象并注册要监听的目录:
Path directory = Paths.get("path/to/directory");
WatchService watchService = FileSystems.getDefault().newWatchService();
directory.register(watchService, StandardWatchEventKinds.ENTRY_MODIFY);
- 启动一个无限循环来监听文件事件:
while (true) {
WatchKey key;
try {key = watchService.take();
} catch (InterruptedException e) {e.printStackTrace();
return;
}
for (WatchEvent<?> event : key.pollEvents()) {if (event.kind() == StandardWatchEventKinds.ENTRY_MODIFY) {Path modifiedFile = (Path) event.context();
System.out.println("Modified file: " + modifiedFile);
// 读取文件内容
try {List<String> lines = Files.readAllLines(directory.resolve(modifiedFile));
// 处理文件内容
} catch (IOException e) {e.printStackTrace();
}
}
}
key.reset();}
在上面的代码中,当监听到文件修改事件时,会输出修改的文件路径,并使用 Files.readAllLines 方法读取文件内容。你可以根据需要进一步处理文件内容。
请注意,上述代码仅监听文件修改事件 (ENTRY_MODIFY),你还可以注册其他事件,如 ENTRY_CREATE 和 ENTRY_DELETE 等,具体可以根据你的需求进行调整。
丸趣 TV 网 – 提供最优质的资源集合!
正文完