|
|
Introduction To Java Tutorials > Java
Java Beginner's Guide
Welcome to the openzu.com JAVA tutorial. These tutorials are desgined to give you a basic understanding of the way in which Java works and will hopefully get you writing your own programs in no time! Please check you have met the basic requirements below before going any further.
What is Java?
Java was developed by Sun Micro Systems and is widly used throughout world. It is taught at most good Universities around the world. Java is not compiled to machine code like most other programming languages (although there are ways to achive this), instead it runs on JVM (Java Virtual Machine) which provided the operating supports it makes your code cross platform.
Your first Java program
Here's an example of a very simple HTML page.
public class HelloWorld{
public static void main(String[] args){
System.out.println("Hello World!");
}
}
Hello World!
How do I make this run?
To make this simple program run on your computer, just follow these steps below. Please make sure all the steps at the beginning of this tutorial have been completed before hand.
Page Responses
Currently there have been no responses to this page...
If you have anything to contribute to this tutorial, found a bug, or know a better way of achieving the same goal, please leave your response below.
|