java 追加字符串到文本文件末尾,txt追加

public void fileOutputStream() throws IOException{
		String temp="Hello world!\n";
		FileOutputStream fos = new FileOutputStream("D:\\my.txt",true);//true表示在文件末尾追加
		fos.write(temp.getBytes());
		fos.close();//流要及时关闭
	}


黑色头发:http://heisetoufa.iteye.com/

你可能感兴趣的:(txt,文本文件,写入,追加)