java JFrame 关闭窗口时确认

在点击了窗口的关闭按钮时,弹出确认对话框,如果点击“是”就关闭窗口(关闭程序),否则什么都不做。

主要代码如下:

public class MainFrame extends JFrame{

public MainFrame (){

setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);

ddWindowListener(new WindowAdapter() {
        public void windowClosing(WindowEvent e) {
           int i=JOptionPane.showConfirmDialog(null, "确定要退出系统吗?", "退出系统", JOptionPane.YES_NO_OPTION);
        if(i==JOptionPane.YES_OPTION){
         System.exit(0);
        }
        }
   });

}

}

你可能感兴趣的:(java,null,Class)