我已经看到这可以在其他类型的对话窗口中使用,例如“showConfirmDialog”,其中可以指定按钮的数量及其名称;但使用“showInputDialog”时是否可以实现相同的功能?我似乎无法在API中找到这种类型的东西。也许我只是错过了,但任何帮助都表示赞赏。
答案 0 :(得分:16)
只需将自定义JPanel作为消息添加到JOptionPane.showOptionDialog()
:
String[] options = {"OK"};
JPanel panel = new JPanel();
JLabel lbl = new JLabel("Enter Your name: ");
JTextField txt = new JTextField(10);
panel.add(lbl);
panel.add(txt);
int selectedOption = JOptionPane.showOptionDialog(null, panel, "The Title", JOptionPane.NO_OPTION, JOptionPane.QUESTION_MESSAGE, null, options , options[0]);
if(selectedOption == 0)
{
String text = txt.getText();
// ...
}
答案 1 :(得分:4)
JOptionPane.showInputDialog()
将返回用户输入的字符串,否则返回null
。见this:
返回:用户的输入,或null表示用户取消了输入
您无法使用showInputDialog()
但是,您可以使用JOptionPane#showOptionDialog():
Object[] buttons = {"OK"};
int res = JOptionPane.showOptionDialog(yourFrame,
"YourMessage","YourTitle",
JOptionPane....,
JOptionPane..., null, buttons , buttons[0]);
正如@HovercraftFullOfEels在评论中所述,您可以在对话框中添加JTextField
并实现此目的。
答案 2 :(得分:1)