不使用log4j输出日志
Posted alwaysbecoding
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了不使用log4j输出日志相关的知识,希望对你有一定的参考价值。
linux
System.setOut(new PrintStream(new File("/opt/apache-tomcat-8.5.51/logs/outLog.txt"))); System.out.println("输出到日志文件测试");
windows
System.setOut(new PrintStream(new File("D:/logs/outLog.txt"))); System.out.println("输出到日志文件测试");
以上是关于不使用log4j输出日志的主要内容,如果未能解决你的问题,请参考以下文章