写一段字符到指定的文本文档中,如果该文本文档不存在,则创建该文本文档

 import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream; public class IOTest03 { public static void main(String[] args) {
File dest = new File("dest.txt");
OutputStream os = null; try {
os = new FileOutputStream(dest, false);
String msg = "Hi, Good morning.";
byte[] buffer = msg.getBytes(); // encode
os.write(buffer, 0, buffer.length);
os.flush();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (os != null) {
os.close();
System.out.println("\n\nOutputStream Closed.");
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
}

如果一开始,该文本文档不存在,那么在执行程序之后,选中工程,按F5刷新,该文本文档才会在工程目录中显示,双击可打开该文本文档。

Java 写一段字符到指定的文本文档中,如果该文本文档不存在,则创建该文本文档-LMLPHP

04-26 14:11