码迷,mamicode.com
首页 > 系统相关 > 详细

ECLIPSE控制台信息导出

时间:2018-08-08 13:51:48      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:exception   刷新   add   new   tor   set   tac   tst   file   

JAVA代码:

String fileAddress = Config.get_storeServiceLogsAsTextFile(); //获取信息的存放位置
//将控制台的信息保存到特定的文件中
PrintStream out = System.out;
PrintStream ps = null;
try {
  ps = new PrintStream(fileAddress);

  System.setOut(ps);
} catch (FileNotFoundException e1) {
  e1.printStackTrace();
}

System.out.println(" 启动开始。。。");

。。。

System.out.println(" 启动结束。。。");

System.setOut(out); 

运行后,没运行一次文件中信息就会刷新一次

 

 

 对于通过Eclipse设置的情况,可取别处查询

ECLIPSE控制台信息导出

标签:exception   刷新   add   new   tor   set   tac   tst   file   

原文地址:https://www.cnblogs.com/Stir-friedEggplant/p/9441974.html

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