//Other uses of JOptionPane
import javax.swing.*;
class JOptionPanes {
public static void main( String[ ] args )
{
String message = "the is the message";
String title = "this is the title";
JOptionPane.showMessageDialog(null, message, title, JOptionPane.PLAIN_MESSAGE);
JOptionPane.showMessageDialog(null, message, title, JOptionPane.QUESTION_MESSAGE);
JOptionPane.showMessageDialog(null, message, title, JOptionPane.WARNING_MESSAGE);
JOptionPane.showMessageDialog(null, message, title, JOptionPane.INFORMATION_MESSAGE);
JOptionPane.showMessageDialog(null, message, title, JOptionPane.ERROR_MESSAGE);
// JOptionPane putting an image
ImageIcon icon1 = new ImageIcon("SB.png");
String s;
JOptionPane.showMessageDialog(null, message, title, JOptionPane.PLAIN_MESSAGE, icon1);
s = (String) JOptionPane.showInputDialog(null ,"message", "title", JOptionPane.PLAIN_MESSAGE, icon1, null, "");
}