chengqianl 2010-05-20 21:38
浏览 506
已采纳

java快速读取文本文件最后一行数据内容,文本文件非常大

java快速读取文本文件最后一行数据内容,文本文件非常大

  • 写回答

4条回答 默认 最新

  • weixin_42518082 2010-05-21 07:41
    关注

    [code="java"]
    public static void main(String[] args) throws Exception {
    File file = new File("E:/a.txt"); // 100M
    long start = System.currentTimeMillis();
    String lastLine = readLastLine(file, "gbk");
    long delt = System.currentTimeMillis() - start;
    System.out.println(lastLine);
    System.out.println("读取时间(毫秒):" + delt);

    file = new File("E:/b.txt");// 仅一行文字
    start = System.currentTimeMillis();
    lastLine = readLastLine(file, "gbk");
    delt = System.currentTimeMillis() - start;
    System.out.println(lastLine);
    System.out.println("读取时间(毫秒):" + delt);
    }

    public static String readLastLine(File file, String charset) throws IOException {
    if (!file.exists() || file.isDirectory() || !file.canRead()) {
    return null;
    }
    RandomAccessFile raf = null;
    try {
    raf = new RandomAccessFile(file, "r");
    long len = raf.length();
    if (len == 0L) {
    return "";
    } else {
    long pos = len - 1;
    while (pos > 0) {
    pos--;
    raf.seek(pos);
    if (raf.readByte() == '\n') {
    break;
    }
    }
    if (pos == 0) {
    raf.seek(0);
    }
    byte[] bytes = new byte[(int) (len - pos)];
    raf.read(bytes);
    if (charset == null) {
    return new String(bytes);
    } else {
    return new String(bytes, charset);
    }
    }
    } catch (FileNotFoundException e) {
    } finally {
    if (raf != null) {
    try {
    raf.close();
    } catch (Exception e2) {
    }
    }
    }
    return null;
    }

    [/code]

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?