//----------------------------------------------------覆蓋原有

import java.io.*;

public class A{
public static void main(String [] args) throws Exception{

FileWriter fw = new FileWriter("gg.txt");
fw.write("你好!!");
fw.close();
}
}

//---------------------------------------------------加在尾端

import java.io.*;

public class A{
public static void main(String [] args) throws Exception{

FileWriter fw = new FileWriter("gg.txt", true);
fw.write("你好!!");
fw.close();
}
}

創作者介紹
創作者 彥霖 實驗筆記 的頭像
黃彥霖

彥霖 實驗筆記

黃彥霖 發表在 痞客邦 留言(0) 人氣( 12457 )