> Java > java지도 시간 > SwingWorker 및 Executor 스레드에서 ArrayIndexOutOfBoundsException을 포착하는 방법은 무엇입니까?

SwingWorker 및 Executor 스레드에서 ArrayIndexOutOfBoundsException을 포착하는 방법은 무엇입니까?

Patricia Arquette
풀어 주다: 2024-12-19 20:08:10
원래의
195명이 탐색했습니다.

How to Catch ArrayIndexOutOfBoundsException in SwingWorker and Executor Threads?

SwingWorker 및 Executor의 ArrayIndexOutOfBoundsException 문제

문제 설명

Executor 및 SwingWorker 사용 멀티 스레드 작업을 수행하는 동안 대상에서 ArrayIndexOutOfBoundsException이 발생했지만 코드에서 예외를 발생시킬 수 있는 문을 주석 처리한 후 해당 예외가 다시 나타나지 않았습니다. 질문자는 그러한 예외를 포착하는 방법을 알고 싶어합니다.

답변

ArrayIndexOutOfBoundsException을 포착하려면 SwingWorker의 done() 메서드에 있는 Future#get()에서 예외를 다시 발생시킬 수 있습니다.

@Override
protected void done() {
    try {
        get();
    } catch (InterruptedException | ExecutionException ie) {
        ie.printStackTrace();
    } catch (IllegalStateException is) {
        is.printStackTrace();
    }
}
로그인 후 복사

수정된 코드 조각

// ...

@Override
protected void done() {
    if (str.equals("StartShedule")) {
        try {
            get();
        } catch (InterruptedException | ExecutionException ie) {
            ie.printStackTrace();
        } catch (IllegalStateException is) {
            is.printStackTrace();
        }
    }
}
로그인 후 복사

전체 코드

완전한 코드는 다음과 같습니다.

// ...

@Override
protected void done() {
    if (str.equals("StartShedule")) {
        try {
            get();
        } catch (InterruptedException | ExecutionException ie) {
            ie.printStackTrace();
        } catch (IllegalStateException is) {
            is.printStackTrace();
        }
    }
}

// ...
로그인 후 복사

이 수정을 사용한 후에는 주석 처리를 하지 않아도 예외를 발생시키는 코드를 캡처할 수 있습니다. ArrayIndexOutOfBoundsException.

위 내용은 SwingWorker 및 Executor 스레드에서 ArrayIndexOutOfBoundsException을 포착하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿