我想在java中调用一个由于某种原因而阻塞的方法。我想等待该方法 X 分钟,然后我想停止该方法。
我在 StackOverflow 上阅读了一个解决方案,它给了我第一个快速入门。我在这里写:-
ExecutorService executor = Executors.newCachedThreadPool();
Callable<Object> task = new Callable<Object>() {
public Object call() {
return something.blockingMethod();
}
};
Future<Object> future = executor.submit(task);
try {
Object result = future.get(5, TimeUnit.SECONDS);
} catch (TimeoutException ex) {
// handle the timeout
} catch (InterruptedException e) {
// handle the interrupts
} catch (ExecutionException e) {
// handle other exceptions
} finally {
future.cancel(); // may or may not desire this
}
但现在我的问题是,我的函数可以抛出一些异常,我必须捕获并相应地执行一些任务。因此,如果在代码中函数 blockingMethod() 引发了一些异常,我如何在 Outer 类中捕获它们?