2

我正在创建一个返回 JFrame 的自定义类,然后将其传递给 JOptionPane,因为我需要 JOptionPane 中的两个 TextField 而不是一个。有什么方法可以在按下 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 并具有实际实例字段的类。
  • 提供类 getter 方法,允许您在 JOptionPane 返回后查询其状态。
  • 创建你的 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 或字符串作为密码,除非您的应用程序不关心安全性。请改用 JPasswordField 和 char 数组。

于 2013-10-09T22:06:51.737 回答