12

我需要能够用 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());
        }           
    }       
}
4

4 回答 4

10

由于文件截断和(中间)删除等一些特殊情况,重建尾部很棘手。要打开文件而不锁定使用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 中创建尾部的尝试,请参阅:

随意从该代码中获取灵感或简单地复制您需要的部分。如果您发现任何我不知道的问题,请告诉我。

于 2014-11-12T01:20:49.730 回答
1

在此处查看 FileChannel API 。要锁定文件,您可以在此处查看

于 2010-03-29T11:01:31.110 回答
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;
}
于 2018-11-22T06:10:34.510 回答
0

Windows 对文件使用强制锁定,除非您在打开时指定正确的共享标志。如果你想打开一个繁忙的文件,你需要 Win32-APICreateFile一个带有共享标志的句柄FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE

这在 JDK 内部的一些地方用于打开文件以读取属性和内容,但据我所知,它不能导出/可用于 Java 类库级别。所以你需要找到一个本地库来做到这一点。

我认为作为一种快速解决方法,您可以process.getInputStream()从命令中读取"cmd /D/C type file.lck"

于 2014-11-12T00:49:03.767 回答