/** * A simple example showing Java I/O using JOptionPane */ import javax.swing.*; public class JOPSample { public static void main( String[ ] args ) { String name = JOptionPane.showInputDialog( "Enter your name" ); String reply = "Name entered is: " + name; JOptionPane.showMessageDialog( null, reply ); System.exit(0); // terminate program } }