本文實(shí)例為大家分享了java讀取txt文件的具體代碼,供大家參考,具體內(nèi)容如下
創(chuàng)新互聯(lián)公司主營南鄭網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,重慶App定制開發(fā),南鄭h5重慶小程序開發(fā)搭建,南鄭網(wǎng)站營銷推廣歡迎南鄭等地區(qū)企業(yè)咨詢
學(xué)習(xí)小記:
1、首先要根據(jù)路徑獲取你的 txt 文本文件。File file = new File(path);
2、將獲取到的這個(gè)字節(jié)碼流讀進(jìn)緩存。new FileInputStream(file) ;
3、然后對剛才讀進(jìn)緩存的輸入流進(jìn)行解讀,生成對應(yīng)字節(jié)流。InputStreamReader(readIn)
4、再然后通過 BufferedReader 這個(gè)類進(jìn)行一行一行的輸出。bufferedReader.readLine()
代碼:
public static void ReadTxt () { try { File file = new File("E:\\text.txt"); FileInputStream readIn = new FileInputStream(file); InputStreamReader read = new InputStreamReader(readIn, "utf-8"); BufferedReader bufferedReader = new BufferedReader(read); String oneLine= null; while((oneLine= bufferedReader.readLine()) != null){ System.out.println(lineTxt); } read.close(); } catch (Exception e) { System.out.println("讀取文件內(nèi)容出錯(cuò)"); e.printStackTrace(); } }
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。