我想停止在我的项目中意外关闭。我使用 JFrame Form 作为主页。当我单击主窗口的关闭按钮时,我将退出线放在是选项中。当我单击无选项时,我想停止关闭。有没有什么办法。这是我的绳子。我正在使用 netbeans 7.3
private void formWindowClosing(java.awt.event.WindowEvent evt) {
int i= JOptionPane.showConfirmDialog(null, "Are you sure to exit?");
if (i == JOptionPane.YES_OPTION) {
System.exit(0);
} else{
new Home().setVisible(true);
}
}