Home Java Compiling and Running Java program from command line



Compiling and Running Java program from command line
Posted on: March 11, 2013 at 12:00 AM
This tutorial teaches you Compiling and Running Java program from command line.

Compiling and Running Java program from command line - Video tutorial that explains you all steps necessary to compile and run the Java program from dos prompt on windows computer.

In this tutorial I will teach you the process of compiling and running java program from command line. We have also video instruction which makes learning of Java very easy.

In this example we have a simple hello world Java program which simply prints the "Hello World" message on the console.

I have chosen this simple program just to explain you the process of compiling and running the Java program from command prompt. There are many IDEs such as Eclipse, NetBeans etc. which can be used to compile and run the example from the IDE itself.

For a beginner programmer it is necessary to understand the complete process of Java program compilation and execution.

A Java program is first written is any text editor such as notepad and then saved as .java extension. In this example our program name is "HelloWorld.java". Code of the Java program is:

import java.io.*;

public class HelloWorld{
	public static void main(String [] args){
		System.out.println("Hello World!");
	}

}

To compile the program following command is used:

javac HelloWorld.java

To execute the program following command is used:

java HelloWorld

Here is video tutorial of the Compiling and Running Java program from command line:

View more tutorials on Java

Related Tags for Compiling and Running Java program from command line:


More Tutorials from this section

Ask Questions?    Discuss: Compiling and Running Java program from command line  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.