无法从 Future 获取 ArrayIndexOutOfBoundsException>如果线程启动 Executor
问题:
如何捕获 ArrayIndexOutOfBoundsException 或由 SwingWorker 执行的 SwingWorker 任务中的任何异常执行器?
答案:
通过在 SwingWorker 的 did() 方法中重新抛出捕获的异常。
详细说明:
使用Executor启动时SwingWorker 任务,该任务在单独的线程上执行。这意味着任务引发的任何异常都不会传播回 SwingWorker 运行的事件调度线程 (EDT)。结果,任务抛出的未捕获异常将被默默吞掉,done() 方法将正常完成。
要捕获并处理任务抛出的异常,可以使用以下步骤:
通过使用 ExecutionException 重新抛出异常,它将被传播回 EDT,并且可以由任务执行时返回的 Future 上的 get() 方法的调用者处理
示例:
以下代码演示了如何使用上述步骤捕获和处理 Executor 执行的 SwingWorker 任务抛出的异常:
import java.util.concurrent.Executor; import java.util.concurrent.Executors; import javax.swing.SwingWorker; public class TableWithExecutor { private static final Executor executor = Executors.newCachedThreadPool(); public static void main(String[] args) { SwingWorker<Void, Void> worker = new SwingWorker<>() { @Override protected Void doInBackground() throws Exception { // Perform some task that may throw an exception ... // Re-throw any caught exceptions using ExecutionException throw new ExecutionException(new Exception("Error occurred in doInBackground()"), null); } @Override protected void done() { try { get(); // Will throw the re-thrown ExecutionException } catch (ExecutionException e) { // Handle the exception here e.printStackTrace(); } catch (InterruptedException e) { // Handle the interruption here e.printStackTrace(); } } }; executor.execute(worker); } }
按照以下步骤,您可以捕获并处理由 SwingWorker 任务执行的异常执行器,确保未捕获的异常不会被默默地忽视。
以上是如何处理Executor执行SwingWorker任务的异常?的详细内容。更多信息请关注PHP中文网其他相关文章!