Display a popup message in Java Swing

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");