Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. myJframe.addWindowListener(new WindowAdapter() {
  2.             public void windowClosing(WindowEvent e) {
  3.                 int confirmed = JOptionPane.showConfirmDialog(null,
  4.                         "Are you sure you want to exit?", "User Confirmation",
  5.                         JOptionPane.YES_NO_OPTION);
  6.                 if (confirmed == JOptionPane.YES_OPTION)
  7.                     exit(myJframe);
  8.             }
  9.         });