可以使用 java.io.RandomAccessFile
类来实现获取文件的最后一行。具体步骤如下:
-
创建一个
RandomAccessFile
对象,指定要读取的文件路径和打开文件的模式为只读模式。 -
使用
RandomAccessFile
对象的length()
方法获取文件的总长度。 -
通过
RandomAccessFile
对象的seek()
方法将文件指针移动到文件总长度的前一个位置。 -
从文件指针位置开始逐个字节向前读取,直到读取到换行符为止。可以使用
RandomAccessFile
对象的readByte()
方法来读取每个字节。 -
将读取到的字节转换为字符,并将字符附加到一个字符串中,以便最后返回。
以下是一个示例代码:
import java.io.RandomAccessFile; public class LastLineOfFile { public static void main(String[] args) { String filePath = "path/to/your/file.txt"; try { RandomAccessFile file = new RandomAccessFile(filePath, "r"); long fileLength = file.length(); file.seek(fileLength - 1); StringBuilder lastLine = new StringBuilder(); int currentByte = file.readByte(); while (currentByte != -1 && (char) currentByte != '\n') { lastLine.insert(0, (char) currentByte); file.seek(file.getFilePointer() - 2); currentByte = file.readByte(); } System.out.println("Last line of the file: " + lastLine.toString()); file.close(); } catch (Exception e) { e.printStackTrace(); } } }注意,这种方法适用于文本文件,对于二进制文件则无法保证正确性。