JOptionPane YES NO OPTION [duplicate]
问题 This question already has answers here : JOptionPane Yes or No window (8 answers) Closed 3 years ago . I got an JOptionPane and yes and no buttons. But, whichever button you click it still exists. HELP! Heres the code: int dialogButton = JOptionPane.YES_NO_OPTION; JOptionPane.showConfirmDialog (null, "Are you sure?","WARNING", dialogButton); if(dialogButton == JOptionPane.YES_OPTION) { System.exit(0); if(dialogButton == JOptionPane.NO_OPTION) { remove(dialogButton); } } 回答1: You should