您好,登錄后才能下訂單哦!
java讀取文本文件內(nèi)容
今天寫代碼寫著要調(diào)試一個(gè)很長的字符串,就用idea新建了text文本,存放長字符串的內(nèi)容。結(jié)果發(fā)現(xiàn)讀取文本文件內(nèi)容的java代碼不怎么會(huì)寫了,果然是面向百度編程,面向control c 或者control v編程,尷尬。
最終的代碼如下:
public static String readFileContent(String fileName) { File file = new File(fileName); BufferedReader reader = null; StringBuffer sbf = new StringBuffer(); try { reader = new BufferedReader(new FileReader(file)); String tempStr; while ((tempStr = reader.readLine()) != null) { sbf.append(tempStr); } reader.close(); return sbf.toString(); } catch (IOException e) { e.printStackTrace(); } finally { if (reader != null) { try { reader.close(); } catch (IOException e1) { e1.printStackTrace(); } } } return sbf.toString(); }
留個(gè)小問題,這種方式只能讀取普通的文本文件,對于二進(jìn)制之類的文件,是不可以的,那應(yīng)該如何做呢,嗯,等碰到這樣場景的需求再記錄下來吧。
Java一次讀取文本文件所有內(nèi)容
我們做文本處理的時(shí)候的最常用的就是讀寫文件了,尤其是讀取文件,不論是什么文件,我都傾向于一次性將文本的原始內(nèi)容直接讀取到內(nèi)存中再做處理,當(dāng)然,這需要你有一臺(tái)大內(nèi)存的機(jī)器,內(nèi)存不夠者……可以一次讀取少部分內(nèi)容,分多次讀取。
讀取文件效率最快的方法就是一次全讀進(jìn)來,很多人用readline()之類的方法,可能需要反復(fù)訪問文件,而且每次readline()都會(huì)調(diào)用編碼轉(zhuǎn)換,降低了速度,所以,在已知編碼的情況下,按字節(jié)流方式先將文件都讀入內(nèi)存,再一次性編碼轉(zhuǎn)換是最快的方式,典型的代碼如下:
public String readToString(String fileName) { String encoding = "UTF-8"; File file = new File(fileName); Long filelength = file.length(); byte[] filecontent = new byte[filelength.intValue()]; try { FileInputStream in = new FileInputStream(file); in.read(filecontent); in.close(); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } try { return new String(filecontent, encoding); } catch (UnsupportedEncodingException e) { System.err.println("The OS does not support " + encoding); e.printStackTrace(); return null; } }
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。