// 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”,但它仍然为空。
这似乎是一项琐碎的任务。我想念什么?

最佳答案

冲洗:

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

09-25 22:31