情景:
1.创建fromX.txt和to.txt文件(内容必须附加,将来自另一个逻辑) 2.如果是,请将其写入to.txt
,每隔一次从.xxt文件中检查新添加的内容如何从X.txt文件中获取新内容?
我尝试通过计算行数并查找其中的任何更改来实现它。
public static int countLines(String filename) throws IOException {
InputStream is = new BufferedInputStream(new FileInputStream(filename));
try {
byte[] c = new byte[1024];
int count = 0;
int readChars = 0;
boolean empty = true;
while ((readChars = is.read(c)) != -1) {
empty = false;
for (int i = 0; i < readChars; ++i) {
if (c[i] == '\n') {
++count;
}
}
}
return (count == 0 && !empty) ? 1 : count;
} finally {
is.close();
}
}
答案 0 :(得分:1)
你这样实现:
RandomAccessFile
RandomAccessFile
将位置记录为距文件开头的字节偏移量,并使用相同的值进行搜索。
您可以修改上述内容以重复使用RandomAccessFile
对象,而不是每次都打开/关闭它。
更新 - RandomAccessFile
的javadoc为here。查找seek
和getFilePointer
方法。