复制并重定向 System.err 流
我目前在我的应用程序中使用 java.util.logger。它将输出发送到 System.err。我需要它继续执行此操作,但我还需要将该输出发送到其他地方。
有没有办法复制 System.err 流,以便它可以发送到两个不同的源?
I am currently using java.util.logger in my application. It sends its output to System.err. I need it to continue to do this, but I also need to send that output to something else.
Is there a way to copy the System.err stream so that it can send to two different sources?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一如既往,当注意到人们引用
java.util.logger
时,我倾向于至少建议查看另一个日志库,例如 logback 和 slf4j。这篇博客文章描述了一种可以轻松修改以支持您所要求的方法。简而言之,您需要做的是定义一个可以复制其输出的 PrintStream,使用以下命令分配它:
As always when note people referencing
java.util.logger
I feel inclined to at least recommend looking at another logging library, such as logback and slf4j.This blog post describes a method which can easily be adapted to support what you're asking for. In short what you need to do is define a PrintStream which can duplicate its output, assign this using: