Java可以通过使用Java NIO包中的WatchService类来监听文件变化,并使用Java IO或Java NIO来读取文件。
以下是一种基本的使用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等,具体可以根据你的需求进行调整。