毕业论文开发语言企业开发JAVA技术.NET技术WEB开发Linux/Unix数据库技术Windows平台移动平台嵌入式论文范文英语论文
您现在的位置: 毕业论文 >> 企业开发 >> 正文

己项目中的system。out。println可以不显示到systemout.log中吗

更新时间:2012-7-19:  来源:毕业论文

websphere日志的问题 中的systemout.log 记录的是打印到屏幕上的信息。

我自己项目中的system。out。println 能不能不显示在这个文件中,只放websphere自己的

将控制台输出(System.out.println)重定向到文件里面,就可以了呀!

PrintStream printStream = null;
PrintStream sysout = System.out;
PrintStream syserr = System.err;
try {
File file = new File("c:\\systemout.log");

if (!file.exists()) {
try {
file.createNewFile();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
printStream = new PrintStream(new FileOutputStream(new File(
"c:\\systemout.log"), true));
System.setOut(printStream);
System.setErr(printStream);
System.out.println("System.out.println");
System.err.println("System.err.println");
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
if (printStream != null) {
printStream.close();
}}

设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©youerw.com 优尔论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。