Java - Tutorials

Setting up the Java Environment

Home Services Courses Tutorials Contact
Setting Up The Java Environment
Java Environment
Overveiw Of Java Programming
Java Data Types
Java Operators
Java Flow Control

Exam Objectives Covered


Installing Java


Setting the "Path" Environment Variable


Lab 1.1 - Confirming Java is Installed


Installing Notepad++


Lab 1.2 - Hello World

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

}
Exam Objectives Covered
Installing Java
Setting the "Path" Environment Variable
Lab 1.1 - Confirming Java is Installed
Installing Notepad++
Lab 1.2 - Hello World