0
Hwo to use box message
can someone help me plz?
2 Answers
+ 5
JOptionPane.showMessageDialog(frame, "your message here");
frame is the parent component
0
import javax.swing.JOptionPane;
// show input Dialog
String input = JOptionPane.showInputDialog(null, "prompt");
// display message
JOptionPane.showMessageDialog(null, "message");