我需要能够用Java模仿'tail -f'。我正在尝试读取一个日志文件,因为它是由另一个进程写的,但是当我打开文件来读取它时,它会锁定文件而另一个进程无法再写入它。任何帮助将不胜感激!
以下是我目前使用的代码:
public void read(){
Scanner fp = null;
try{
fp = new Scanner(new FileReader(this.filename));
fp.useDelimiter("\n");
}catch(java.io.FileNotFoundException e){
System.out.println("java.io.FileNotFoundException e");
}
while(true){
if(fp.hasNext()){
this.parse(fp.next());
}
}
}
答案 0 :(得分:6)
由于文件截断和(中间)删除等特殊情况,重建尾部很棘手。要在不锁定的情况下打开文件,请使用StandardOpenOption.READ
和新的Java文件API,如下所示:
try (InputStream is = Files.newInputStream(path, StandardOpenOption.READ)) {
InputStreamReader reader = new InputStreamReader(is, fileEncoding);
BufferedReader lineReader = new BufferedReader(reader);
// Process all lines.
String line;
while ((line = lineReader.readLine()) != null) {
// Line content content is in variable line.
}
}
为了尝试用Java创建尾部,请参阅:
examineFile(…)
queue.feed(lineContent)
传递线条内容供听众处理,并等于this.parse(…)
。随意从该代码中获取灵感,或者只是复制您需要的部分。如果您发现任何我不知道的问题,请告诉我。
答案 1 :(得分:1)
答案 2 :(得分:1)
java.io为您提供强制性文件锁定,而java.nio为您提供 咨询文件锁定
如果您想读取没有锁的任何文件,可以在下面的类中使用
import java.nio.channels.FileChannel;
import java.nio.file.Paths;
如果要逐行尾随一个文件,请在下面的代码中使用相同的
public void tail(String logPath){
String logStr = null;
FileChannel fc = null;
try {
fc = FileChannel.open(Paths.get(logPath), StandardOpenOption.READ);
fc.position(fc.size());
} catch (FileNotFoundException e1) {
System.out.println("FileNotFoundException occurred in Thread : " + Thread.currentThread().getName());
return;
} catch (IOException e) {
System.out.println("IOException occurred while opening FileChannel in Thread : " + Thread.currentThread().getName());
}
while (true) {
try {
logStr = readLine(fc);
if (logStr != null) {
System.out.println(logStr);
} else {
Thread.sleep(1000);
}
} catch (IOException|InterruptedException e) {
System.out.println("Exception occurred in Thread : " + Thread.currentThread().getName());
try {
fc.close();
} catch (IOException e1) {
}
break;
}
}
}
private String readLine(FileChannel fc) throws IOException {
ByteBuffer buffers = ByteBuffer.allocate(128);
// Standard size of a line assumed to be 128 bytes
long lastPos = fc.position();
if (fc.read(buffers) > 0) {
byte[] data = buffers.array();
boolean foundTmpTerminator = false;
boolean foundTerminator = false;
long endPosition = 0;
for (byte nextByte : data) {
endPosition++;
switch (nextByte) {
case -1:
foundTerminator = true;
break;
case (byte) '\r':
foundTmpTerminator = true;
break;
case (byte) '\n':
foundTmpTerminator = true;
break;
default:
if (foundTmpTerminator) {
endPosition--;
foundTerminator = true;
}
}
if (foundTerminator) {
break;
}
}
fc.position(lastPos + endPosition);
if (foundTerminator) {
return new String(data, 0, (int) endPosition);
} else {
return new String(data, 0, (int) endPosition) + readLine(fc);
}
}
return null;
}
答案 3 :(得分:0)
Windows使用强制锁定文件,除非您在打开时指定正确的共享标记。如果要打开繁忙文件,则需要Win32-API CreateFile
一个带有共享标志FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE
的句柄。
这在JDK内部用于打开文件以读取属性和内容,但据我所知,它不会导出/可用于Java类库级别。所以你需要找到一个本地库来做到这一点。
我认为作为一个快速解决方法,您可以从命令process.getInputStream()
"cmd /D/C type file.lck"