2

JOptionPane には 1 つではなく 2 つの TextField が必要なので、JFrame を返すカスタム クラスを作成し、それを JOptionPane に渡します。OK を押したときに戻り値を取得する方法はありますか?

 public static JFrame TwoFieldPane(){

 JPanel p = new JPanel(new GridBagLayout());
    p.setBackground(background);
    p.setBorder(new EmptyBorder(10, 10, 10, 10) );
    GridBagConstraints c = new GridBagConstraints();
    c.gridx = 0;
    c.gridy = 0;
    p.add(new JLabel(field1), c);
    c.gridx = 0;
    c.gridy = 1;
    p.add(new JLabel(field2), c);
    //p.add(labels, BorderLayout.WEST);
    c.gridx = 1;
    c.gridy = 0;
    c.ipadx = 100;
    final JTextField username = new JTextField(pretext1);
    username.setBackground(foreground);
    username.setForeground(textcolor);
    p.add(username, c);
    c.gridx = 1;
    c.gridy = 1;
    JTextField password = new JTextField(pretext2);
    password.setBackground(foreground);
    password.setForeground(textcolor);
    p.add(password, c);
    c.gridx = 1;
    c.gridy = 2;
    c.ipadx = 0;
    JButton okay = new JButton("OK");
    okay.addActionListener(new ActionListener(){
        public void actionPerformed(ActionEvent e) {
            f.setVisible(false);
            //RETURN VALUE HERE
        }
    });
    p.add(okay, c);

    f.add(p);
    f.pack();
    f.setLocationRelativeTo(null);

    f.setVisible(true);
    return f;
}

そして、これは私がそれを作成しているところです:

try{
    JOptionPane.showInputDialog(Misc.TwoFieldPane("Server ip: ", "" , "Port: ", ""));
    }catch(IllegalArgumentException e){e.printStackTrace(); }
4

1 に答える 1

5

あなたのコードは少し変わっています。提案させてください:

  • JOptionPane に JFrame を使用しないでください。少し奇抜です。
  • 静的メソッドの過度の使用は避けてください。OOPは行くべき道です。
  • JOptionPane の JPanel を作成し、実際のインスタンス フィールドを持つクラスを作成します。
  • JOptionPane が返された後、その状態を照会できるクラス getter メソッドを提供します。
  • JOptionPane を作成し、上記のクラスから作成された JPanel を与えます。
  • JOptionPane が返されたら、配置したオブジェクトのフィールド状態を問い合わせます。

つまり、非常に単純な例です...

public class MyPanel extends JPanel {
  private JTextField field1 = new JTextField(10);
  // .... other fields ? ...

  public MyPanel() {
     add(new JLabel("Field 1:");
     add(field1);
  }

  public String getField1Text() {
    return field1.getText();
  }

  // .... other getters for other fields
}

...別のクラスのどこか...

MyPanel myPanel = new MyPanel();
int result = JOptionPane.showConfirmDialog(someComponent, myPanel);
if (result == JOptionPane.OK_OPTION) {
  String text1 = myPanel.getField1Text(); 
  // ..... String text2 = ...... etc .....
  // .... .use the results here
}

余談ですが、アプリケーションでセキュリティが問題にならない場合を除いて、JTextField または Strings をパスワードに使用しないでください。代わりに JPasswordField と char 配列を使用してください。

于 2013-10-09T22:06:51.737 に答える