Future에서 ArrayIndexOutOfBoundsException을 가져올 수 없습니다> 스레드가 Executor를 시작하는 경우 SwingWorker
질문:
ArrayIndexOutOfBoundsException 또는 다음에 의해 실행되는 SwingWorker 작업에서 예외를 잡는 방법 실행자?
답변:
SwingWorker의 done() 메소드 내에서 포착된 예외를 다시 발생시킵니다.
자세히 설명:
Executor를 사용하여 SwingWorker 작업은 별도의 스레드에서 실행됩니다. 이는 작업에서 발생하는 모든 예외가 SwingWorker가 실행 중인 EDT(이벤트 전달 스레드)로 다시 전파되지 않음을 의미합니다. 결과적으로 작업에서 발생한 포착되지 않은 예외는 자동으로 처리되고 done() 메서드는 정상적으로 완료됩니다.
작업에서 발생한 예외를 포착하고 처리하려면 다음 단계를 사용할 수 있습니다.
ExecutionException을 사용하여 예외를 다시 발생시킵니다. EDT로 다시 전파되고 작업이 실행될 때 반환된 Future의 get() 메서드 호출자가 처리할 수 있습니다. 제출되었습니다.
예:
다음 코드는 위에 설명된 단계를 사용하여 실행자가 실행하는 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); } }
이러한 단계를 수행하면 Executor가 실행하는 SwingWorker 작업에서 발생하는 예외를 포착하고 처리할 수 있습니다. 발견되지 않은 예외는 조용히 눈에 띄지 않게 됩니다.
위 내용은 실행자가 실행한 SwingWorker 작업의 예외를 처리하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!