java如何讀取txt檔案?
1、使用FileInputStream實作讀取txt檔案內容
2、使用FileOutputStream實作寫入txt檔案內容
package cn.xiaobing.util; import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.InputStreamReader; public class ReadTxt { /**传入txt路径读取txt文件 * @param txtPath * @return 返回读取到的内容 */ public static String readTxt(String txtPath) { File file = new File(txtPath); if(file.isFile() && file.exists()){ try { FileInputStream fileInputStream = new FileInputStream(file); InputStreamReader inputStreamReader = new InputStreamReader(fileInputStream); BufferedReader bufferedReader = new BufferedReader(inputStreamReader); StringBuffer sb = new StringBuffer(); String text = null; while((text = bufferedReader.readLine()) != null){ sb.append(text); } return sb.toString(); } catch (Exception e) { e.printStackTrace(); } } return null; } /**使用FileOutputStream来写入txt文件 * @param txtPath txt文件路径 * @param content 需要写入的文本 */ public static void writeTxt(String txtPath,String content){ FileOutputStream fileOutputStream = null; File file = new File(txtPath); try { if(file.exists()){ //判断文件是否存在,如果不存在就新建一个txt file.createNewFile(); } fileOutputStream = new FileOutputStream(file); fileOutputStream.write(content.getBytes()); fileOutputStream.flush(); fileOutputStream.close(); } catch (Exception e) { e.printStackTrace(); } } }
3.驗證程式碼
//验证方法:先写入文件后读取打印如下: public static void main(String[] args) { writeTxt("D:/yzm/result1.txt", "测试写入txt文件内容"); String str = readTxt("D:/yzm/result1.txt"); System.out.println(str); }
說明:
1、FileInputStream
FileInputStream是Java語言中抽象類別InputStream用來具體實作類別的創建對象。 FileInputStream可以從檔案系統中的某個檔案取得輸入位元組,而取得的檔案可用性取決於主機環境。
FileInputStream的建構方法需要指定檔案的來源,透過開啟一個到實際檔案的連線來建立一個FileInputStream,該檔案透過檔案系統中的 File 物件 file 指定。
2、FileOutputStream
FileOutputStream,意為檔案輸出流,是用於將資料寫入File或 FileDescriptor的輸出流。
FileOutputStream 用於寫入諸如圖像資料之類的原始位元組的流。若要寫入字元流,請考慮使用 FileWriter。
以上是java如何讀寫txt檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!