Java捕获并处理线程失败抛出的异常

时间:2023-03-10 01:23:34
Java捕获并处理线程失败抛出的异常

Java捕获并处理线程失败抛出的异常

使用 UncaughtExceptionHandler

示例代码如下:

Thread.UncaughtExceptionHandler handler = new Thread.UncaughtExceptionHandler() {
public void uncaughtException(Thread th, Throwable ex) {
System.out.println("Uncaught exception: " + ex);
}
};
Thread thread = new Thread() {
public void run() {
System.out.println("Sleeping ...");
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
System.out.println("Interrupted.");
}
System.out.println("Throwing exception ...");
throw new RuntimeException();
}
};
thread.setUncaughtExceptionHandler(handler);
thread.start();

相关文章