如何在Java中捕获AWT线程异常?

如何在Java中捕获AWT线程异常?,第1张

如何在Java中捕获AWT线程异常?

在EDT中和EDT外,未捕获的异常之间存在区别。

另一个问题有一个解决方案,但是如果您只想咀嚼EDT部分的话…

class AWTExceptionHandler {  public void handle(Throwable t) {    try {      // insert your exception handling pre 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())  }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5615583.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存