1. 程式人生 > 實用技巧 >在檔案中資料的追加續寫

在檔案中資料的追加續寫

package day31;

import java.io.FileOutputStream;
import java.io.IOException;

/*
public FileOutputStream(File file,boolean append)
1:建立一個向指定 File 物件表示的檔案中寫入資料的檔案輸出流。
用法:建立一個向具有指定 file的檔案中寫入資料的輸出檔案流。
如果第二個引數為 true,則將位元組寫入檔案末尾處,而不是寫入檔案開始處。
2:public FileOutputStream(String name,boolean append)
建立一個向具有指定 name 的檔案中寫入資料的輸出檔案流。
用法:建立一個向具有指定 name 的檔案中寫入資料的輸出檔案流。
如果第二個引數為 true,則將位元組寫入檔案末尾處,而不是寫入檔案開始處。
file ,name為寫檔案的目的地;
append指是否續寫;

換行符:
windows:\r\n;
linux: /n;
mac:/r;
*/
public class adddatefile {
public static void main(String[] args) throws IOException {
FileOutputStream fe=new FileOutputStream("E:\\congce\\out.txt",true);
String str="你好!";
byte[] bytes=str.getBytes();
fe.write(bytes);
fe.write("\r\n".getBytes());
fe.write(bytes);
fe.close();
}


}