有没有办法在JOptionPane showInputDialog中只有OK按钮(而且没有CANCEL按钮)?

时间:2013-05-12 19:07:55

标签: java swing joptionpane jdialog

我已经看到这可以在其他类型的对话窗口中使用,例如“showConfirmDialog”,其中可以指定按钮的数量及其名称;但使用“showInputDialog”时是否可以实现相同的功能?我似乎无法在API中找到这种类型的东西。也许我只是错过了,但任何帮助都表示赞赏。

3 个答案:

答案 0 :(得分:16)

只需将自定义JPanel作为消息添加到JOptionPane.showOptionDialog()

enter image description here

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)

尝试:

JOptionPane.showMessageDialog(frame, "Eggs are not supposed to be green.");

我在here

中找到了