1

如何制作一个顶部有文本的对话框,在其下方有一个空白区域,用户可以在其中键入,在右侧有一个OKAY按钮,当您单击它时对话框会消失?

像这样:

输入对话框

4

1 回答 1

4
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");

JOptionPane 请求输入

于 2013-03-09T16:04:31.507 回答