如何制作一个顶部有文本的对话框,在其下方有一个空白区域,用户可以在其中键入,在右侧有一个OKAY按钮,当您单击它时对话框会消失?
像这样:
String input = JOptionPane.showInputDialog(..);
有关详细信息,请参阅如何制作对话框。这是该文档中的一个示例。
String s = (String)JOptionPane.showInputDialog(
this,
"Complete the sentence:\n"
+ "\"Green eggs and...\"",
"Customized Dialog",
JOptionPane.PLAIN_MESSAGE,
null,
null,
"ham");