undercoverindian
12/27/2017 - 12:45 AM

JOptionPane

Creating dialog boxes and input dialog boxes

JOptionPane.showMessageDialog(null, "hi \n", "Dialog Title", JOptionPane.ERROR_MESSAGE);

String date = JOptionPane.showInputDialog(null, "hi", "hi", JOptionPane.QUESTION_MESSAGE);

int response = JOptionPane.showConfirmDialog(null, "Dialog Message");

if (response == JOptionPane.YES_OPTION)
   //perform yes action

else if (response == JOptionPane.NO_OPTION)
    //perform yes action