// 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”,但它仍然是空的。 这似乎是一项微不足道的任务。我错过了什么?
答案 0 :(得分:-1)
冲洗它:
binOutput.write(b);
binOutput.flush();
binOutput.close();