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();
}

 

posted @ 2010-12-23 19:51  meng72ndsc  阅读(223)  评论(0编辑  收藏  举报