Ask user if wants to quit via JOptionPane
问题 I'm using this code to confirm the user whether wants to quit or not when he CLICKS THE RED CROSS CLOSE BUTTON OF JFrame (right upper corner) Object[] options = {"Quit, My Computing Fellow", "No, I want to Work more"}; int Answer = JOptionPane.showOptionDialog(null, "What would you like to do? ","Quit:Continue", JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE, null, options,options[1]); if(Answer == JOptionPane.YES_OPTION){ System.exit(0); } else if (Answer == JOptionPane.CANCEL