FileOutputStream
FileOutputStream
使用FileOutputStream可以向文件写入内容。如果在构造FileOutputStream时,该文件已经存在,那么就覆盖这个文件。
代码
public static void main(String[] args) throws IOException {
String path = System.getProperty("user.dir") + File.separator + "temp.txt";
File file = new File(path);
OutputStream os = new FileOutputStream(file);
os.write("OutputStream".getBytes());
os.flush();
os.close();
}