1、字节流写数据如何实现换行?不同的系统文件换行方式不一样: Window:\r\n Linux:\n Mac:\rfor.write("\r\n".getBytes()); //for为字节输出流对象。
2、字节流写数据如何实现追加写入呢?public FileOutputStream(String name,boolean append); 创建文件输出流以指定的名称写入文件; 如果第二个参数为true,则字节将写入文件的末尾而不是开头。