有没有一种方法可以在Java中创建全局异常处理程序。我想这样使用:
"When an exception is thrown somewhere in the WHOLE program, exit."
处理程序可能无法捕获在try-catch主体中引发的异常。
try-catch
马丁
使用Thread.setDefaultUncaughtExceptionHandler。有关示例,请参见Rod Hilton的“ Global Exception Handling ”博客文章。