1,相关的方法: 1,相关的方法: 追加的形式写数据:(append :true) public class Text01 {public static void main(String[] args) throws IOException { //设置apprnd为true FileWriter fw = new FileWriter("G:\\abc.txt",true); fw.write("daddd"); fw.close();}}