1. 程式人生 > >java-檔案處理

java-檔案處理

 1 import java.io.*;
 2 
 3 /**
 4  * @Author: Lambert
 5  * @Date: 2018-12-31 22:45
 6  * @Description:
 7  * java 寫入檔案
 8  */
 9 public class fileStreamTest2 {
10     public static void main(String[] args) throws IOException {
11         File file =new File("a.txt");
12         /**
13          * 構建FileOutputStream物件,檔案不存在會自動新建
14 */ 15 FileOutputStream fop=new FileOutputStream(file); 16 /** 17 * 構建OutputStreamWriter物件,引數可以指定編碼,預設為作業系統預設編碼,windows上是gbk 18 */ 19 OutputStreamWriter writer =new OutputStreamWriter(fop); 20 /** 21 * 寫入檔案 22 */ 23 writer.append("abc");
24 /** 25 * 關關閉寫入流,同時會把緩衝區內容寫入檔案 26 */ 27 writer.close(); 28 /** 29 * 關閉輸出流,釋放系統資源 30 */ 31 fop.close(); 32 33 34 } 35 }
java將文字寫入檔案