如何创建一个具有多个文本字段的输入对话框(即可以输入多个输入)

Hax*_*xed 8 java swing dialog input textfield

嘿那里,我已经实现了一个输入 DialogBox,但是它有一个文本字段.我需要一个输入DialogBox,它有许多文本字段来接收输入并将每个String存储在一个数组中.

到目前为止我做了什么:

alt text http://i47.tinypic.com/141kwes.jpg


import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JTextField;

public class second extends JFrame implements ActionListener {

JLabel enterName;
JTextField name;
JButton click;
String storeName;

public second() {

    setLayout(null);
    setSize(300, 250);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    click = new JButton("Click");
    click.setBounds(100, 190, 60, 30);
    click.addActionListener(this);
    add(click);
}

public void actionPerformed(ActionEvent e) {

    if (e.getSource() == click) {
    String response = JOptionPane.showInputDialog(null,
                "What is your name?",
                "Enter your name",
                JOptionPane.QUESTION_MESSAGE);
    }
    }

    public static void main(String args[]) {

    second s = new second();
    s.setVisible(true);
}
}
Run Code Online (Sandbox Code Playgroud)

非常感谢

Blu*_*ird 2

使用 JDialog 表单。

您可以在其中使用多个输入字段。

您可以在此链接中查看示例。