Table of Contents |
By following the steps on this page, you can create and use a standalone Java application.Create a Java Source File
Create a file named HelloWorldApp.java with the Java code shown here:/** * The HelloWorldApp class implements an application that * simply displays "Hello World!" to the standard output. */ class HelloWorldApp { public static void main(String[] args) { System.out.println("Hello World!"); //Display the string. } }Compile the Source File
Compile the source file using the Java compiler.If compilation succeeds, the compiler creates a file named HelloWorldApp.class. If compilation fails, make sure you typed in and named the program exactly as shown above.
Run the Application
Run the program using the Java interpreter.You should see "Hello World!" displayed on the standard output.
What Next?
Now you can:
- Continue on in this lesson to learn more about the anatomy of applications, how the "Hello World" application works, and how the Java language implements object-oriented concepts.
- Go to the next lesson, The "Hello World" Applet, which steps you through writing and running an applet, as well as introducing you to a few more Java features.
- Learn more about the Java language by going to the Writing Java Programs trail.
Table of Contents |