我们希望在我们的应用程序日志中跟踪这些异常 - 默认情况下,Java只是将它们输出到控制台。
答案 0 :(得分:12)
自Java 7以来,您必须采用不同的方式,因为sun.awt.exception.handler
hack不再起作用。
Here is the solution(来自Uncaught AWT Exceptions in Java 7)。
// Regular Exception
Thread.setDefaultUncaughtExceptionHandler(new ExceptionHandler());
// EDT Exception
SwingUtilities.invokeAndWait(new Runnable()
{
public void run()
{
// We are in the event dispatching thread
Thread.currentThread().setUncaughtExceptionHandler(new ExceptionHandler());
}
});
答案 1 :(得分:10)
EDT中和EDT之外的未捕获异常之间存在区别。
Another question has a solution for both但是如果你想让EDT部分被咀嚼......
class AWTExceptionHandler {
public void handle(Throwable t) {
try {
// insert your exception handling code here
// or do nothing to make it go away
} catch (Throwable t) {
// don't let the exception get thrown out, will cause infinite looping!
}
}
public static void registerExceptionHandler() {
System.setProperty('sun.awt.exception.handler', AWTExceptionHandler.class.getName())
}
}
答案 2 :(得分:3)
对 shemnon s anwer的一点补充:
第一次在EDT中发生未捕获的RuntimeException(或Error)时,它正在查找属性“sun.awt.exception.handler”并尝试加载与该属性关联的类。 EDT需要Handler类具有默认构造函数,否则EDT将不使用它
如果你需要为处理故事带来更多动态,你必须使用静态操作来执行此操作,因为该类由EDT实例化,因此没有机会访问除静态之外的其他资源。这是我们正在使用的Swing框架中的异常处理程序代码。它是为Java 1.4编写的,它在那里工作得非常好:
public class AwtExceptionHandler {
private static final Logger LOGGER = LoggerFactory.getLogger(AwtExceptionHandler.class);
private static List exceptionHandlerList = new LinkedList();
/**
* WARNING: Don't change the signature of this method!
*/
public void handle(Throwable throwable) {
if (exceptionHandlerList.isEmpty()) {
LOGGER.error("Uncatched Throwable detected", throwable);
} else {
delegate(new ExceptionEvent(throwable));
}
}
private void delegate(ExceptionEvent event) {
for (Iterator handlerIterator = exceptionHandlerList.iterator(); handlerIterator.hasNext();) {
IExceptionHandler handler = (IExceptionHandler) handlerIterator.next();
try {
handler.handleException(event);
if (event.isConsumed()) {
break;
}
} catch (Throwable e) {
LOGGER.error("Error while running exception handler: " + handler, e);
}
}
}
public static void addErrorHandler(IExceptionHandler exceptionHandler) {
exceptionHandlerList.add(exceptionHandler);
}
public static void removeErrorHandler(IExceptionHandler exceptionHandler) {
exceptionHandlerList.remove(exceptionHandler);
}
}
希望它有所帮助。
答案 3 :(得分:0)
有两种方法:
我不知道后者是否适用于非SUN jvms。
-
实际上,第一个不正确,它只是一种检测崩溃线程的机制。