At times, we need to show quick messages in a small window on screen to users in Java. Here is a quick way to do this.
import javax.swing.JOptionPane
JOptionPane.showMessageDialog(null, "This is my Message Dialog");
Knowledge not shared benefits no one.
At times, we need to show quick messages in a small window on screen to users in Java. Here is a quick way to do this.
import javax.swing.JOptionPane
JOptionPane.showMessageDialog(null, "This is my Message Dialog");