FileOutputStream fos = new FileOutputStream("yyy.txt",true); //如果想续写就在第二个参数传true
fos.write(97);
fos.write(98);
fos.close();
但是我如果不写true,写成:
FileOutputStream fos = new FileOutputStream("yyy.txt");
fos.write(97);
fos.write(98);
输出结果也是:ab
第二个参数加与不加,结果好像是一样的啊 |
|