私はスイング中のUbuntu 11.10にデスクトップアプリケーションを持っており、ユーザーが特定のボタンをクリックすると入力ダイアログボックスが開き、ユーザーに入力を求める機能を実装しました。
public void actionPerformed(ActionEvent e) {
//Shows a input dialog asking the template ID to verify
String id = JOptionPane.showInputDialog(rootPane,
"Enter the Enrolled ID to verify.", "Verify",
JOptionPane.QUESTION_MESSAGE);
}
そのため、ユーザーは値を入力して [OK] ボタンをクリックするか、ダイアログ ボックス アプリケーションを閉じようとしてもエラーが発生してクラッシュします。
エラー:
The program 'java.ori' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadWindow (invalid Window parameter)'.
(Details: serial 2262 error_code 3 request_code 20 minor_code 0)
(Note to programmers: normally, X errors are reported asynchronously;
that is, you will receive the error a while after causing it.
To debug your program, run it with the --sync command line
option to change this behavior. You can then get a meaningful
backtrace from your debugger if you break on the gdk_x_error() function.)
誰でもこれを解決するのを手伝ってもらえますか? 前もって感謝します。