Java将byte []写入文件 - 空文件

时间:2013-12-12 03:53:20

标签: java fileoutputstream

// Open bin file for writing:
String s = "Hello";
FileOutputStream binOutput = new FileOutputStream("out.txt");
byte[] b;
b = s.getBytes();
binOutput.write(b);
binOutput.close();

上面的代码是从java servlet页面运行的 在此之后,我检查了“out.txt”,但它仍然是空的。 这似乎是一项微不足道的任务。我错过了什么?

1 个答案:

答案 0 :(得分:-1)

冲洗它:

binOutput.write(b);
binOutput.flush();
binOutput.close();