Software Sue

Link to Simply Sue
Link to Sustainability Sue
location: software/java/running Skip navigation : Home  

Running Java Applications


Note that Java is case sensitive.

javac YourProgram.java

java YourProgram

appletviewer YourApplet.html

If you are using a product other than JDK, follow its instructions to acheve the same result.

Example of Java Application

Try creating and running a Java application as described above using the following code.


public class MyFirstApp
{
  public static void main(String[] args)
{
    String[] casts = 
  {
      "you will become rich"  , "you will be healthy",
      "you will get married"  , "you will change jobs",
      "you will get promoted" , "there will be an addition to your family",
      "you will meet a tall dark handsome stranger"
                     };
    System.out.println("Your forecast for today is that "
              + casts[(int)( casts.length*Math.random())%7]);
  }
}