String result = JOptionPane.showInputDialog(this, temp);
result
value 将是输入的值。
String result = JOptionPane.showInternalInputDialog(this, temp);
result
即使您输入了字符串,值也会为空。
temp
是将包含在 JOptionPane 中的面板。此 JOptionPane 将显示在另一个自定义 JOptionPane 之上。
String result = JOptionPane.showInputDialog(this, temp);
result
value 将是输入的值。
String result = JOptionPane.showInternalInputDialog(this, temp);
result
即使您输入了字符串,值也会为空。
temp
是将包含在 JOptionPane 中的面板。此 JOptionPane 将显示在另一个自定义 JOptionPane 之上。
JOptionPane.showInternalInputDialog
仅与JDesktopPane
/ JInternalFrame
s一起使用, / s 实例this
在哪里。JDesktopPane
JInternalFrame
final JDesktopPane desk = new JDesktopPane();
...
String s=JOptionPane.showInternalInputDialog(desk, "Enter Name");
如果不与上述两个组件中的任何一个一起使用,它将不会产生正确的输出,实际上它会抛出运行时异常:
java.lang.RuntimeException: JOptionPane: parentComponent 没有有效的父级
更新
根据您的评论,这里是您如何添加JPanel
和JDesktopPane
调用的示例JOptionPane#showInternalInputDialog
。重要的部分是我们需要调用setBounds
and setVisible
onJPanel
就像我们将它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);