2016-06-14 21 views
0

私のアプリケーションでは、ユーザーが入力を提供するときにJOptionPane.showOptionDialogを頻繁に表示する必要があります。カスタムパネルを使用したJOptionPane.showOptionDialogが正しく動作しない

時には表示されず、ユーザー入力やハングアップを待つことがあります。

ここでは、同じコードを再生するためのサンプルコードを添付しました。

import java.awt.BorderLayout; 
import java.awt.Dimension; 
import java.awt.GridBagLayout; 

import javax.swing.JLabel; 
import javax.swing.JOptionPane; 
import javax.swing.JPanel; 
import javax.swing.JTextField; 
import javax.swing.JTextPane; 
import javax.swing.ToolTipManager; 
import javax.swing.text.BadLocationException; 
import javax.swing.text.DefaultStyledDocument; 
import javax.swing.text.Style; 
import javax.swing.text.StyleConstants; 
import javax.swing.text.StyleContext; 
import javax.swing.text.StyledDocument; 

public class TestJOptionPane { 

public static void main(String[] args) { 

    for (int index = 0; index < 20; index++) { 
     String serverMessage = "Test question message index = "+index; 
     String hintText = "Test question hint index = "+index; 

     JPanel mainPanel = new JPanel(new BorderLayout(0,4)); 
     JPanel answerPanel = new JPanel(new GridBagLayout()); 

     StyleContext context = new StyleContext(); 
     StyledDocument document = new DefaultStyledDocument(context); 

     Style style = context.getStyle(StyleContext.DEFAULT_STYLE); 
     StyleConstants.setFontFamily(style, "Dialog"); 
     StyleConstants.setFontSize(style, 12); 
     StyleConstants.setBold(style, true); 

     try { 
      document.insertString(document.getLength(), serverMessage, style); 
     } catch (BadLocationException badLocationException) { 
      System.out.println(badLocationException.getMessage()); 
     } 

     JTextPane questionTA = new JTextPane(document); 
     questionTA.setEditable(false); 
     questionTA.setOpaque(false); 

     final JTextField answerField = new JTextField(); 
     answerField.setPreferredSize(new Dimension(410,23)); 
     answerField.requestFocus(); 

     JLabel hint = new JLabel(); 

     ToolTipManager.sharedInstance().setDismissDelay(10000); 
     hint.setText("Hint"); 
    // hint.setIcon(Utility.getIcon("HintQuestion.png")); 

     answerPanel.add(answerField); 
     answerPanel.add(new JPanel().add(hint));       
     answerPanel.setPreferredSize(new Dimension(450, 30)); 
     mainPanel.add(questionTA,BorderLayout.NORTH); 
     mainPanel.add(answerPanel,BorderLayout.SOUTH); 

     hint.setToolTipText(hintText); 

     String[] options = {"OK"}; 
     JOptionPane.showOptionDialog(null, mainPanel, "Test showOptionDialog", JOptionPane.OK_OPTION, JOptionPane.QUESTION_MESSAGE, null, options, options[0]); 
    } 
} 
} 

O/Pは

ような "テスト質問メッセージインデックス= 0" を表示し、OK

"テスト質問メッセージインデックス= 1" をクリックして、ランダムにOK

をクリックJOptionPane.showOptionDialogは表示されません。

誰でも私を助けることができます!前もって感謝します。

+1

[*初期スレッド*](http://docs.oracle.com/javase/tutorial/uiswing/concurrency/initial.html)を参照してください。 – trashgod

答えて

2

コードを以下のように変更する必要があります。

 try { 
      SwingUtilities.invokeAndWait(new Runnable() { 

       @Override 
       public void run() { 
        int result = JOptionPane.showOptionDialog(null, mainPanel, "Test showOptionDialog", JOptionPane.OK_OPTION, JOptionPane.QUESTION_MESSAGE, null, options, options[0]); 
       } 
      }); 
     } catch (InvocationTargetException e) { 
      e.printStackTrace(); 
     } catch (InterruptedException e) { 
      e.printStackTrace(); 
     } 
+0

あなたの応答Benitonに感謝します。私はinvokeAndWaitのを使用している場合、実際に私の方法は パブリックオブジェクトSendResponseのように見えます(文字列のステータスは、文字列SERVERMESSAGE、ストリングfunctionNameを、文字列hintText)がRemoteExceptionをスロー{ //上記のコードとサーバー へのユーザー入力を返す}は は、それがあります別スレッドどのように私は私の呼び出し元のメソッドにanswerField.getText()を返すのですか? – Tamil

+1

@Lokesh ObserverPatternを実装することができます。テキストフィールドを観察可能にし、userInputを返すときに通知を受け取るオブザーバを持つようにします。 – Beniton

関連する問題