我有一个 Java 程序。当我运行程序时,它会给我一个我附加的 GUI。
当我想关闭它时,它会提示一个确认对话框。如果我按下是按钮,它将使用System.exit()
.
public static void main(String args[])
{
ButtonTest app = new ButtonTest( );
app.addWindowListener(
new WindowAdapter( )
{
public void windowClosing (WindowEvent e)
{
String message = " Really Quit ? ";
String title = "Quit";
int reply = JOptionPane.showConfirmDialog(null, message, title, JOptionPane.YES_NO_OPTION);
if (reply == JOptionPane.YES_OPTION)
{
System.exit(0);
}
}
}
);
}
如果我不想退出程序,我该怎么办?System.continued()
?