2
String result = JOptionPane.showInputDialog(this, temp);

resultvalue 将是输入的值。

String result = JOptionPane.showInternalInputDialog(this, temp);

result即使您输入了字符串,值也会为空。

temp是将包含在 JOptionPane 中的面板。此 JOptionPane 将显示在另一个自定义 JOptionPane 之上。

4

1 回答 1

6

JOptionPane.showInternalInputDialog仅与JDesktopPane/ JInternalFrames一起使用, / s 实例this在哪里。JDesktopPaneJInternalFrame

final JDesktopPane desk = new JDesktopPane();
...
String s=JOptionPane.showInternalInputDialog(desk, "Enter Name");

如果不与上述两个组件中的任何一个一起使用,它将不会产生正确的输出,实际上它会抛出运行时异常:

java.lang.RuntimeException: JOptionPane: parentComponent 没有有效的父级

更新

根据您的评论,这里是您如何添加JPanelJDesktopPane调用的示例JOptionPane#showInternalInputDialog。重要的部分是我们需要调用setBoundsand setVisibleonJPanel就像我们将它JInternalFrame添加到 中JDesktopPane一样,当然除了我们添加一个JPanel

JFrame frame = new JFrame("JInternalFrame Usage Demo");

frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

// A specialized layered pane to be used with JInternalFrames
jdpDesktop = new JDesktopPane() {
    @Override
    public Dimension getPreferredSize() {
        return new Dimension(600, 600);
    }
};

frame.setContentPane(jdpDesktop);

JPanel panel = new JPanel();
panel.setBounds(0, 0, 600, 600);

jdpDesktop.add(panel);

frame.pack();
frame.setVisible(true);

panel.setVisible(true);

String result = JOptionPane.showInternalInputDialog(jdpDesktop, "h");

System.out.println(result);
于 2012-12-29T16:17:50.383 回答