
http://www.roseindia.net/java/quick-java.shtml
Ok, now you know the basics of Java programming and have downloaded the Java Development Kit (JDK), then its time to write your first Java program.
lanjutannya klik di sini
Create a source code program in any of the text editor available like jEdit, Notepad, TextPad etc. Java program is a class with a main method in it. The main method is the starting point for every Java application. So first define the class name and lets take it as FirstProgram and write it in the text editor like below
public class FirstProgram
{
public static void main(String[] args)
{
System.out.println("Ini program java paling sederhana!");
}
}
output di screen monitor
Ini program java paling sederhana!