使用 Java 程序写文件时,记得要 flush()

时间:2021-06-30 13:02:51

使用 Java 程序往磁盘写文件时碰到了这样的问题:文件写不全。

假如内容(StringBuffer/StringBuilder)有 100W 个字符,但是通过 Java 程序写到文件里的却不到 100W ,部分字符不见了。

代码大致是这样的:

     private void writeToDisk() throws Exception {
File file = new File("FILE_PATH");
OutputStreamWriter osw = null;
osw = new OutputStreamWriter(new FileOutputStream(file)); osw.write("A HUGE...HUGE STRING");
}

文件是生成了。可内容不对,只写入了部分字符。

我甚至怀疑,是不是 StringBuffer/StringBuilder 也有长度限制?因为每次写入文件的字符都一样多。

现在想想,真是图样图森破啊。

后来,经旁人提醒,你 flush 了吗?

遂恍然大悟。

正确的代码应该是这样的:

   private void writeToDisk2() {
File file = new File("FILE_PATH");
OutputStreamWriter osw = null;
try {
osw = new OutputStreamWriter(new FileOutputStream(file)); osw.write("A HUGE...HUGE STRING"); } catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
osw.flush();
osw.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}

没有 flush , 直接 close 也行。

不过 Java 官方文档提醒:close之前,要 flush 一下。

Closes the stream, flushing it first. Once the stream has been closed, further write() or flush() invocations will cause an IOException to be thrown. Closing a previously closed stream has no effect.

不该犯这样的错误的。

上学的时候老师都教了,打开的流一定要记得关闭

〇老师,对不起,我错了。

因为只是一个小的测试程序,没有那么规范地写 try/catch ,直接都 throw 掉了。

打住。不要给自己找理由。

再小的程序也有自己的规则/规范,要遵守。