首頁 > Java > java教程 > 如何在 SwingWorker 和 Executor 線程中捕獲 ArrayIndexOutOfBoundsException?

如何在 SwingWorker 和 Executor 線程中捕獲 ArrayIndexOutOfBoundsException?

Patricia Arquette
發布: 2024-12-19 20:08:10
原創
190 人瀏覽過

How to Catch ArrayIndexOutOfBoundsException in SwingWorker and Executor Threads?

SwingWorker 和 Executor 中 ArrayIndexOutOfBoundsException 的問題

使用問題>使用 S3ker>.進行多執行緒操作時,題主遇到了一個 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();
        }
    }
}
登入後複製

完整程式碼如下:

使用此修改後,即使未註解掉導致異常的程式碼,也能擷取到ArrayIndexOutOfBoundsException。

以上是如何在 SwingWorker 和 Executor 線程中捕獲 ArrayIndexOutOfBoundsException?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板