0

我以前使用过这个输入对话框,但由于某种原因它使我的程序崩溃。我尝试向输入对话框添加不同的选项,但得到相同的结果

Intelliji 上的错误消息是“进程完成,退出代码 -805306369”

JOptionPane pane = new JOptionPane(); 
String name = pane.showInputDialog("Name Your Profile");

SaveParameters(name);  //this is what takes the output
4

1 回答 1

1

意识到这是由我的主 UI 后面显示的窗口引起的,当我再次单击以聚焦主 UI 时,导致 UI 崩溃。

为 Component 参数提供 null 参数可以解决问题。

String Name = JOptionPane.showInputDialog(null,"Name Your Profile");
于 2014-12-10T09:25:37.940 回答