如何将控制台中的输出记录到文件中?
NetBeans生成类似Logger.getLogger(svr.class.getName()).log(Level.SEVERE, null, ex);
的代码来在catch中输出异常。它将显示在控制台中。 部署项目后,我看不到任何异常信息。当控制台可用时,如何将这些错误消息输出到文件和控制台中?
谢谢各位。
The NetBeans generate code like Logger.getLogger(svr.class.getName()).log(Level.SEVERE, null, ex);
to output exception in catch.It will display in console.
After I deploy my project,I cannot see any exception info.How to output those error messages to file and in console when console is available?
Thanks folks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NetBeans 中的日志记录系统基于标准 JDK 的 java.util.logging 并尽可能遵守它。为了将错误消息输出到文件,您可以在项目的类路径上提供自己的日志记录属性文件。
有关详细信息,请参阅以下链接:
Netbeans 日志记录:
http://bits .netbeans.org/dev/javadoc/org-openide-util/org/openide/util/doc-files/logging.html
使用日志记录属性文件示例进行 Java Util 日志记录:
http://www.javapractices.com/topic/TopicAction.do?Id=143
The logging system in NetBeans is based on the standard JDK's java.util.logging and complies to it as much as possible. In order to output error messages to a file, you can provide your own logging properties file on the classpath of your project.
See the following links for more info :
Netbeans logging :
http://bits.netbeans.org/dev/javadoc/org-openide-util/org/openide/util/doc-files/logging.html
Java Util logging with logging properties file sample :
http://www.javapractices.com/topic/TopicAction.do?Id=143