Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想删除和/或注意第三方库在 java system.out 中产生的警告消息。例如,意识到这些在第三方库线程中产生的警告,我想退出并重新启动应用程序。提前致谢
您可能希望重定向System.out到另一个打印流
System.out
System.setOut(myPrintStream);
并实现一个观察者,检测该流上的变化,解析内容并触发动作。