之前我使用过此输入对话框,但由于某种原因,它会导致程序崩溃。我尝试在输入对话框中添加不同的选项,但我得到了相同的结果
Intelliji上的错误消息是“已完成退出代码-805306369”
JOptionPane pane = new JOptionPane();
String name = pane.showInputDialog("Name Your Profile");
SaveParameters(name); //this is what takes the output
答案 0 :(得分:0)
意识到这是由我的主UI后面显示的窗口引起的,当我点击再次聚焦主UI时,导致UI崩溃。
为Component参数赋予null参数可以解决问题。
String Name = JOptionPane.showInputDialog(null,"Name Your Profile");