如何将控制台中的输出记录到文件中?

发布于 2024-11-05 04:28:57 字数 184 浏览 4 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

通知家属抬走 2024-11-12 04:28:57

NetBeans 中的日志记录系统基于标准 JDK 的 java.util.logging 并尽可能遵守它。为了将错误消息输出到文件,您可以在项目的类路径上提供自己的日志记录属性文件。

有关详细信息,请参阅以下链接:

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 :

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文