您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“java高效文件流的讀寫操作詳解”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“java高效文件流的讀寫操作詳解”吧!
導(dǎo)語
防止自己以后忘記,記錄一些文件流的性能對比。
平常經(jīng)常會操作到文件讀寫,java當(dāng)中提供了許多操作文件的類,一般來說,文件操作也叫流操作,可以按照以下方式分類:
按照功能分類,字節(jié)流和字符流。 按照節(jié)點(diǎn)流和過濾流,節(jié)點(diǎn)流直接操作文件,過濾流包裝了節(jié)點(diǎn)流和過濾流。如FileInputStream和BufferedFileInputStream就是分別是節(jié)點(diǎn)流和過濾流。
文件流比較
下面重點(diǎn)比較我們經(jīng)常用的幾個流
(1) DataInputStream+FileInputStream
(2) DataInputStream+BufferedInputStream
(3) BufferedReader+FileReader(緩沖流大小不同性能也不同,如1K和8K)
(4) BufferedFileReader
先貼結(jié)論:
耗時對比為:
(4)優(yōu)于(3)—8096優(yōu)于(3)-1024優(yōu)于(2)<(1)
另外,BufferedFileReader如果涉及到讀取文件的每一行內(nèi)容還可以在優(yōu)化,傳統(tǒng)的代碼如下所示:
BufferedFileReader in = new BufferedFileReader(); for (int i=0; i < nargs; i++) { try { in.open(args[i]); while ((line = in.readLine()) != null) { nlines++; } in.close(); } catch (Exception e) { System.out.println(" BFRTest: exception:" + e ); }
代碼中第5行,BufferedReader首先生成一個StringBuffer,然后轉(zhuǎn)成一個String返回,這里涉及到兩次字符拷貝。假設(shè)讀取10000行,會有10000個臨時的String對象生成,內(nèi)存比較耗費(fèi),由于BufferedReader的緩沖流是私有的,因此這里的優(yōu)化點(diǎn)是可以自己管理緩沖流。最佳的讀文件的方法代碼如下:
FileReader fr; int nlines = 0; char buffer[] = new char[8192 + 1]; int maxLineLength = 128; //assumes no line is longer than this char lineBuf[] = new char[maxLineLength]; for (int i = 0; i < nargs; i++) { try { fr = new FileReader(args[i]); int nChars = 0; int nextChar = 0; int startChar = 0; boolean eol = false; int lineLength = 0; char c = 0; int n; int j; while (true) { if (nextChar >= nChars) { n = fr.read(buffer, 0, 8192); if (n == -1) { // EOF break; } nChars = n; startChar = 0; nextChar = 0; } for (j = nextChar; j < nChars; j++) { c = buffer[j]; if ((c == '\n') || (c == '\r')) { eol = true; break; } } nextChar = j; int len = nextChar - startChar; if (eol) { nextChar++; if ((lineLength + len) > maxLineLength) { // error } else { System.arraycopy(buffer, startChar, lineBuf, lineLength, len); } lineLength += len; // // Process line here // nlines++; if (c == '\r') { if (nextChar >= nChars) { n = fr.read(buffer, 0, 8192); if (n != -1) { nextChar = 0; nChars = n; } } if ((nextChar < nChars) && (buffer[nextChar] == '\n')) nextChar++; } startChar = nextChar; lineLength = 0; continue; } if ((lineLength + len) > maxLineLength) { // error } else { System.arraycopy(buffer, startChar, lineBuf, lineLength, len); } lineLength += len; } fr.close(); } catch (Exception e) { System.out.println("exception: " + e); }
NIO文件流
FileChanel介紹
通道,之前流是單向的,而通道是雙向的,既可以讀,也可以寫。讀取文件效率參考這里。
到此,相信大家對“java高效文件流的讀寫操作詳解”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。