import javax.swing.JOptionPane; String infoMessage = "dialog box"; String titleBar = "title"; JOptionPane.showMessageDialog(null, infoMessage, "InfoBox: " + titleBar, JOptionPane.INFORMATION_MESSAGE);