FileOutputStream类,实现换行写入和追加写入的解决办法

package fileoutputstream;

import java.io.FileOutputStream;

public class FileOutputStreamDemo3 {
	public static void main(String[] args) throws Exception {
		// 创建字节输出流对象
		// FileOutputStream fos = new FileOutputStream("fos3.txt");
		// 创建一个向具有指定name的文件中写入数据的输出文件流。如果第二个参数为true,则将字节写入文件末尾处,而不是写入文件开始处
		FileOutputStream fos2 = new FileOutputStream("fos3.txt", true);// 第二個参数为true表示程序每次运行都是追加字符串在原有的字符上

		// 写数据
		for (int x = 0; x < 10; x++) {
			fos2.write(("hello" + x).getBytes());
			fos2.write("\r\n".getBytes());// 写入一个换行
		}
		// 释放资源
		fos2.close();
	}
}

你可能感兴趣的:(Java-IO流)