【FileOutputStream類:文件中的換行與追加】
阿新 • • 發佈:2018-11-09
package test; import java.io.FileOutputStream; import java.io.IOException; /** * @author shusheng * @description 文件中的換行與追加 * @Email [email protected] * @date 2018/11/9 14:50 */ public class FileOutputStreamDemo3 { public static void main(String[] args) throws IOException { /** *換行: *不同的作業系統的換行符不同:Windows的為\r\n, linux:\n, Mac:\r *追加: *把FileOutputStream("fos.txt")改為FileOutputStream("fos.txt",true)*/ FileOutputStream fos = new FileOutputStream("fos.txt",true); for(int x=0; x<10; x++){ fos.write(("hello"+x).getBytes()); fos.write(("\n").getBytes()); } fos.close(); } }