Using JOptionPane

  • Follow


Hi,

I am new to Java Programming and I am trying to write code using JOption
pane to prompt user to type information and then have string output command
to display information on the screen.
I am able to prompt for typing the information but the display does not
work. Here is my sample code:

**

/**

 * <p>TitleTesting</p>

 * <p>Descriptio: Display Movie list</p>

 *

 */

//Print Address Labels

import javax.swing.JOptionPane;



public class Homework1 {

  public Homework1() {



  }

  public static void main(String[] args) {

    String movieName;

    String theaterName;





  //Enter Movie Name

  String movieName =

      JOptionPane.showInputDialog(

      null, "Enter the Name of the Movie ",

      "Example 1.0 Input",

      JOptionPane.QUESTION_MESSAGE);

//Enter Name

 String directorName=

     JOptionPane.showInputDialog(

     null, "Enter Name of Director ",

     "Example 1.1 Input",

     JOptionPane.QUESTION_MESSAGE);

//Display  Name of  Movie and Director



    String output =   movieName+ directorName

        JOptionPane.showMessageDialog(null,output,"Example 1.2 output",

                                 JOptionPane.INFORMATION_MESSAGE);

  System.exit(0);









  }



}








0
Reply jazzy 4/19/2004 3:55:48 AM

jazzy wrote:
> Hi,
> I am new to Java Programming and I am trying to write code using JOption
> pane to prompt user to type information and then have string output command
> to display information on the screen.
> I am able to prompt for typing the information but the display does not
> work. Here is my sample code:
<snip>

You'll probalby do better at comp.lang.java.programmer, this is a 
javascript group.

Good Luck,
Mike

0
Reply mscir 4/19/2004 4:05:17 AM


1 Replies
552 Views

(page loaded in 0.45 seconds)

Similiar Articles:













7/23/2012 12:04:11 PM


Reply: