A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 这个好吃给你吃 初级黑马   /  2019-4-3 13:58  /  792 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

package day6;

import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;

public class FileOutputStreamDemo02 {
    public static void main(String[] args) throws IOException {
//        FileOutputStream fos = new FileOutputStream("itheima\\day061.txt");

/*        fos.write(97);
        fos.write(98);
        fos.write(99);
        fos.write(100);
        fos.write(101)*/;

/*        byte[] byt = {97,98,99,100,101};
        fos.write(byt);*/
/*        byte[] byt = "爱你".getBytes();
        fos.write(byt);
        fos.write(byt,0,byt.length);
        fos.close();*/
//      如何实现换行和追加写入?
//        windows : \r\n
//        linux: \n
//        mac : \r
        /*
        * FileOutputStream fos = new FileOutputStream(String name,boolean append);
        * */
        FileOutputStream fos = new FileOutputStream("itheima\\day061.txt",true);
        for (int i = 0; i < 10; i++) {
            fos.write("爱你哟".getBytes());
            fos.write("\r\n".getBytes());
        }
        fos.close();
    }
}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马