使用 java 日志文件和 log4j

发布于 2024-12-19 19:14:45 字数 241 浏览 2 评论 0原文

我是日志文件新手。
我想记录运行应用程序时抛出的异常以及用户使用我的 java swing 应用程序时的一些其他语句。
使用日志 我相信,我在应用程序中无法处理和发现的一些问题可以通过查看日志来识别和解决。
我认为,从应用程序中获取此类语句的最佳方法是创建日志文件。
我读了一些文章,发现了一个叫做 log4j 的东西。
请任何人让我了解更多有关日志文件(优点)和 Swing 应用程序中显示获取外部文件语句的良好示例代码的信息。

I am new to log files.
I want to log exceptions thrown while running the application and some other statements when a user uses my java swing application.
Using logs I believe that some problems which I haven't been able to handle and find in my application can be identified and solved by looking at the logs.

As I think, the best way to get such statements out of the application is creating log files.
I read some articles and found something called log4j.
Please any one let me know more about log files(advantages) and good sample codes in a swing application showing getting statements to an external file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

自此以后,行同陌路 2024-12-26 19:14:45

Log4j 的主要优点是允许使用不同的级别< /a> 和不同的输出类型(Appenders),该库是完全可使用其 log4j.properties 进行配置,您可以在其中定义其配置。

log4j 的另一个优点是日志文件包含有关应用程序问题的半结构化信息,并且存在多个应用程序来查看和过滤 log4j 生成的文件。

看看这里配置了文件的log4j附加器示例。

The main advantage of Log4j is that allow logging using different levels and different output type(Appenders), the library is fully configurable with its log4j.properties where you can define its configuration.

Another advantage of log4j is that log files contain semi structured information about application problems and exists several applications to view and filter a log4j generated files.

Take a look here for a log4j configured with a File Appender example .

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