输入对话框没有图标,只有OK选项

时间:2015-05-09 15:25:12

标签: java swing joptionpane

我尝试使用只有OK按钮的输入区域创建一个JOptionPane。

尝试这样做时,没有图标,只有一个额外的取消按钮:

String name = (String) JOptionPane.showInputDialog(null, "Please enter your name", "Name required", JOptionPane.PLAIN_MESSAGE, null, null, "name");

当我这样做时,会有一个图标:

String name = (String) JOptionPane.showInputDialog(null, "Please enter your name", "Name required", JOptionPane.OK_OPTION, null, null, "name");

有没有办法将两者结合起来?我不明白后者是如何工作的,因为我在你放置图标的地方使用了null。

1 个答案:

答案 0 :(得分:4)

这样的事情:

JTextField field  = new JTextField(20);
JLabel label = new JLabel("Enter your text here");
JPanel p = new JPanel(new BorderLayout(5, 2));
p.add(label, BorderLayout.WEST);
p.add(field);
JOptionPane.showMessageDialog(null, p, "Name required", JOptionPane.PLAIN_MESSAGE, null);
String text = field.getText();
System.out.println("You've entered: " + text);