import javax.swing.JOptionPane; // for GUI I/O public class UsingGUI { InputStreamReader inFile = new InputStreamReader(new FileReader ("output.dat")); public static void main (String[] args) { String item; // ask the user his/her age item = JOptionPane.showInputDialog ("Enter an item:"); // display the message JOptionPane.showMessageDialog (null, message, "Your Age", JOptionPane.PLAIN_MESSAGE); // exit the program System.exit(0); } // end of main method } // end of class UsingGUI