首頁 > Java > java教程 > 計算 Java 檔案行數最有效的方法是什麼?

計算 Java 檔案行數最有效的方法是什麼?

DDD
發布: 2024-12-08 01:04:12
原創
398 人瀏覽過

What's the Most Efficient Way to Count Lines in a Java File?

如何有效率地決定 Java 檔案的行數

計算檔案的行數是程式設計中的常見任務。在 Java 中,一種常見的方法是逐行讀取檔案直到到達末尾,這對於大檔案來說效率很低。

更最佳化的解決方案是使用 countLinesOld 方法,該方法按位元組讀取檔案byte 併計算換行符 (n) 的出現次數。這種方法比逐行讀取檔案快得多,尤其是對於大檔案。

public static int countLinesOld(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();
    }
}
登入後複製

但是,為了獲得更快的效能,請考慮使用 countLinesNew 方法,該方法利用展開循環和快取等優化檔案的每個 1024 位元組區塊的行數。

public static int countLinesNew(String filename) throws IOException {
    InputStream is = new BufferedInputStream(new FileInputStream(filename));
    try {
        byte[] c = new byte[1024];
        
        int readChars = is.read(c);
        if (readChars == -1) {
            // bail out if nothing to read
            return 0;
        }
        
        // make it easy for the optimizer to tune this loop
        int count = 0;
        while (readChars == 1024) {
            for (int i=0; i<1024;) {
                if (c[i++] == '\n') {
                    ++count;
                }
            }
            readChars = is.read(c);
        }
        
        // count remaining characters
        while (readChars != -1) {
            for (int i=0; i<readChars; ++i) {
                if (c[i] == '\n') {
                    ++count;
                }
            }
            readChars = is.read(c);
        }
        
        return count == 0 ? 1 : count;
    } finally {
        is.close();
    }
}
登入後複製

這些最佳化方法比標準 readLine 提供了顯著的速度改進方法,使它們成為高效計算大檔案中行數的理想選擇。

以上是計算 Java 檔案行數最有效的方法是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板