码迷,mamicode.com
首页 > 其他好文 > 详细

将控制台上的东西写到本地磁盘

时间:2014-05-29 08:22:59      阅读:288      评论:0      收藏:0      [点我收藏+]

标签:c   a   int   get   文件   string   

/**
*将控制台文件输出到本地磁盘
*/
public void writeDiskInfo() {

String dirName = "f:\\disk\\";
String fileName = "磁盘信息.xml";

File file = new File(dirName + fileName);

// 当文件目录不存在时
if (!file.getParentFile().exists()) {
file.getParentFile().mkdirs();// 创建文件目录
}

try {

file.createNewFile();// 创建文件
FileOutputStream fileOutputStream = new FileOutputStream(file);
PrintStream printStream = new PrintStream(fileOutputStream);

System.setOut(printStream);// 重新分配标准输出流
system.out.print("hello world");

} catch (FileNotFoundException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

}

}

将控制台上的东西写到本地磁盘,布布扣,bubuko.com

将控制台上的东西写到本地磁盘

标签:c   a   int   get   文件   string   

原文地址:http://www.cnblogs.com/zsbook/p/3756801.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!