我有一个名为foo.txt
的文件。这个文件包含一些文本。我想实现以下功能:
- 启动程序
- 向文件写入内容(例如添加一行:
new string in foo.txt
) - 我只想得到这个文件的新内容。
foo.txt
,我想看到diff。
我在Java中发现的最接近的工具是WatchService
,但如果我理解正确,这个工具只能检测文件系统上发生的事件类型(创建文件或删除或修改)。
Java Diff Utils就是为此目的而设计的。
final List<String> originalFileContents = new ArrayList<String>();
final String filePath = "C:/Users/BackSlash/Desktop/asd.txt";
FileListener fileListener = new FileListener() {
@Override
public void fileDeleted(FileChangeEvent paramFileChangeEvent)
throws Exception {
// use this to handle file deletion event
}
@Override
public void fileCreated(FileChangeEvent paramFileChangeEvent)
throws Exception {
// use this to handle file creation event
}
@Override
public void fileChanged(FileChangeEvent paramFileChangeEvent)
throws Exception {
System.out.println("File Changed");
//get new contents
List<String> newFileContents = new ArrayList<String> ();
getFileContents(filePath, newFileContents);
//get the diff between the two files
Patch patch = DiffUtils.diff(originalFileContents, newFileContents);
//get single changes in a list
List<Delta> deltas = patch.getDeltas();
//print the changes
for (Delta delta : deltas) {
System.out.println(delta);
}
}
};
DefaultFileMonitor monitor = new DefaultFileMonitor(fileListener);
try {
FileObject fileObject = VFS.getManager().resolveFile(filePath);
getFileContents(filePath, originalFileContents);
monitor.addFile(fileObject);
monitor.start();
} catch (InterruptedException ex) {
ex.printStackTrace();
} catch (FileNotFoundException e) {
//handle
e.printStackTrace();
} catch (IOException e) {
//handle
e.printStackTrace();
}
其中getFileContents
为:
void getFileContents(String path, List<String> contents) throws FileNotFoundException, IOException {
contents.clear();
BufferedReader reader = new BufferedReader(new InputStreamReader(new FileInputStream(path), "UTF-8"));
String line = null;
while ((line = reader.readLine()) != null) {
contents.add(line);
}
}
我做了什么:
- 我在
List<String>
中加载了原始文件内容。 - 我使用Apache Commons VFS监听文件更改,使用
FileMonitor
。你可能会问,为什么?因为WatchService
只能从Java 7开始使用,而FileMonitor
至少可以与Java 5一起使用(个人偏好,如果您喜欢WatchService
,您可以使用它)。注意: Apache Commons VFS依赖于Apache Commons Logging,你必须将两者添加到你的构建路径中才能使其工作。 - 我创建了一个
FileListener
,然后我实现了fileChanged
方法。 - 该方法从文件中加载新内容,并使用
Patch.diff
检索所有差异,然后打印它们 - 我创建了一个
DefaultFileMonitor
,它基本上监听一个文件的变化,我把我的文件添加到它。
监视器启动后,它将开始侦听文件更改