Comments
Richard Davies wrote: The UK has a good crop of technology pioneers in cloud computing - for example ElasticHosts, FlexiScale, Flexiant, OnApp - and also some strong government initiatives such as G-Cloud. We will have to see whether this kind of technical leadership converts into swift mass-market adoption or not.
Cloud Expo on Google News


2008 West
DIAMOND SPONSOR:
Data Direct
SOA, WOA and Cloud Computing: The New Frontier for Data Services
PLATINUM SPONSORS:
Red Hat
The Opening of Virtualization
GOLD SPONSORS:
Appsense
User Environment Management – The Third Layer of the Desktop
Cordys
Cloud Computing for Business Agility
EMC
CMIS: A Multi-Vendor Proposal for a Service-Based Content Management Interoperability Standard
Freedom OSS
Practical SOA” Max Yankelevich
Intel
Architecting an Enterprise Service Router (ESR) – A Cost-Effective Way to Scale SOA Across the Enterprise
Sensedia
Return on Assests: Bringing Visibility to your SOA Strategy
Symantec
Managing Hybrid Endpoint Environments
VMWare
Game-Changing Technology for Enterprise Clouds and Applications
Click For 2008 West
Event Webcasts

2008 West
PLATINUM SPONSORS:
Appcelerator
Get ‘Rich’ Quick: Rapid Prototyping for RIA with ZERO Server Code
Keynote Systems
Designing for and Managing Performance in the New Frontier of Rich Internet Applications
GOLD SPONSORS:
ICEsoft
How Can AJAX Improve Homeland Security?
Isomorphic
Beyond Widgets: What a RIA Platform Should Offer
Oracle
REAs: Rich Enterprise Applications
Click For 2008 Event Webcasts
SYS-CON.TV
Top Links You Must Click On


Your First Java Program
Lesson 1: Hello World

Getting Started

The Java Development Kit (JDK) could be downloaded from the Sun Microsystems' Internet site at http://java.sun.com/j2se/1.4/ .

The installation process is pretty simple - just run the downloaded executable file and it'll install it on your disk (the default directory for Java under Microsoft Windows is  c:\j2sdk1.4).

To start writing a Java program you could use any plain text editor. In Windows, it could be an editor called Notepad. In UNIX, it could be the vi editor. The files with Java programs must be saved in a plain text format and must have names ending in .java.  For example, if you want to write a program called HelloWorld, enter its code in Notepad and save it in a class named HelloWorld.java.

Keep in mind that Java is a case sensitive language, which means that if you named the program HelloWorld with a capital H and a capital W, do not try to start the program helloworld.

Here is the infamous program that prints the words Hello World on the screen:

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


Now you need to compile this program. We'll be using the  javac compiler, which is a part of JDK.
 
Let's say you've saved your program in the directory called  c:\practice. Open a command window, change the current directory to c:\practice and compile the program:

c:\>cd \practice

c:\practice>javac HelloWorld.java

If your environment is set properly and your program does not have syntax errors, it will create a new file called HelloWorld.class in the same directory.

If an error message is displayed  saying something  like "javac  is not found", or "bad command/file name" make sure that the directory  c:\j2sdk1.4\bin  is  included to the  search path of your environment.    

- If you are using Windows 98, open the file c:\autoexec.bat
        and add  the directory where your JDK is installed to the environment
        variable PATH, for example 
 
        c:\j2sdk1.4\bin;   

-  In Windows 2000 or XP set the PATH using the menu Settings |
         Control  Panel | System | Environment Variables. 

- In Unix - add it to the shell's PATH environment variable.

You  won't see any confirmation of a successful compilation, just type dir in Windows or ls in Unix, and a new file named HelloWorld.class has to be there. This  proves that your program has been successfully compiled.

If the program has some syntax errors, the compiler will print error messages. In this case you'd need to fix the errors, and recompile the program again. You may need to do it more than once until the file HelloWorld.class is created.

Now let's run the program -  enter the following command:

c:\practice> java HelloWorld

Please note that we do not start  javac, but java , which is called the Java run-time environment or the Java Virtual Machine (JVM).

This time the error message may say that the HelloWorld.class is not found.   Even though you  have the .class file in the same directory as your .java file, JVM is not going to look for it in the current directory unless the current directory is listed in the so-called CLASSPATH variable. Don't confuse this with the variable  PATH, that's been discussed  earlier. 

The variable  CLASSPATH variable is used by the JVM to find compiled classes.  Let's do a procedure similar to what you've done with the PATH.

For example, in Windows 98, open the file autoexec.bat and add the following line to it:

set CLASSPATH=.;

The dot above represents the current directory. If you already had the CLASSPATH variables set in your machine, just add the dot and semicolon to the end of its value.

Give  your Java class and its file the same name.  There could be exceptions to this rule, but not in this simple program.

While writing Java programs, you create classes which represent objects from real life. You'll learn more about classes in the lesson called "Introduction to Object-Oriented Programming in Java".

Our HelloWorld program is also a class and it contains a  method main(). Methods in Java classes represent actions that the class could perform.  The method main() calls the method println() to display the text "Hello World" on the screen.

Here is the method signature of the method main():

public static void main(String[] args)

The method signature includes the access level - public, instructions on usage - static, return value type - void, name of the method - main, and the argument list -  String[] args.

The keyword public means that the method main() could be accessed by any other Java class. The keyword static means that you don't have to create an instance of  this class to use this method. The keyword void says that the method main() doesn't return any value to the calling program.

The keyword Stirng[] args  tells us that this method will receive an array of Strings as the argument (some values could be passed to this method from a command line).

The main() method is the starting point of your program. You can have a program that consists of more that one class, but at least one of them usually has the method main(), otherwise the program will not start. A Java class can have more than one method. For example, a class Employee can have the methods  updateAddress(), raiseSalary(),changeName(), etc.

The body of the method  main()contains the following  line :

System.out.println("Hello World");

The println() is a method that is used to print data on the system console (command window). Java's method names are always followed by parentheses.

System and out are not methods, but names that represent other Java classes.

System.out means that the  variable out is defined inside the class System.

The out.println() tells us that there is an object represented by a variable called  out  and it has  a method called println().

We will be using this so-called dot notation to access class methods or variables. Say you have a class Employee that has a method changeAddress().  Here is an example:

Employee.changeAddress("25 Broadway")

Let's review the steps you would perform to create and run the HelloWorld program:

Step 1. Set the  values for the PATH and CLASSPATH system variables.

Step 2. Create a new directory called practice.

Step 3. Using a text editor, enter the code of the class 
             HelloWorld  and save it in the file  
             c:\practice\HelloWorld.java. 

Step 4.  Compile and run the program:
 
             c:\practice> javac HelloWorld.java
             c:\practice> java HelloWorld


Assignment. Write a program to print your address using  more than one statement println().

About Yakov Fain
Yakov Fain is a Managing Director of Farata Systems, consulting, training and product company. He has authored several Java books, dozens of technical articles. SYS-CON Books released his latest co-authored book , Rich Internet Applications with Adobe Flex and Java: Secrets of the Masters in Spring 2007. Sun Microsystems has nominated and awarded Yakov with the title Java Champion. He leads the Princeton Java Users Group. He is an Adobe Certified Flex Instructor. Yakov co-athored the O'Reilly book "Enterprise Application Development with Flex". He twits at twitter.com/yfain.

In order to post a comment you need to be registered and logged in.

Register | Sign-in

Reader Feedback: Page 1 of 1

This is good stuff. The explanation of what PATH and CLASSPATH do was useful.

As a Java programmer in a college IT department, I''ve worked with quite a few college interns (and also have been approached by fellow co-workers who want to try Java.) They would usually take a college-level Java course or try self-study, but are quite scared to start on their own. Thus, the usual question is "What should I do first?" Many of them expect some magic IDE and are quite surprised with an answer that a pure Notepad would be enough :)
This lesson (and the series as a whole) would provide an invaluable help to the students and guide them step-by-step into the Java world. It contains examples which are easy to follow and understand. Such useful approach can make more people say "Hey, I can do this! Let me try further..." and attract new developers into our community.

Hi J.D,

I agree with you, object-oriented nature is important. But if I start with explaining OOP to people with different backgrounds, I''ll lose a half of my students right away. Guess what? I usually do this on the lesson #2 :)

Regards,
Yakov Fain

What''s here is ok, but it ignores the object-oriented nature of the Java programming language. IMHO, the proper approach to Hello World in Java is a version published by Shengyang Shong (I forget where). This version of Hello World had a class with a main called SayHello that instantiated a Mouth that had a say() method that printed "hello". This example can be expanded, introducing constructors for the Mouth and overloaded say() methods.

J.D.


Your Feedback
Peter Sweet wrote: This is good stuff. The explanation of what PATH and CLASSPATH do was useful.
Andrey Postoyanets wrote: As a Java programmer in a college IT department, I''ve worked with quite a few college interns (and also have been approached by fellow co-workers who want to try Java.) They would usually take a college-level Java course or try self-study, but are quite scared to start on their own. Thus, the usual question is "What should I do first?" Many of them expect some magic IDE and are quite surprised with an answer that a pure Notepad would be enough :) This lesson (and the series as a whole) would provide an invaluable help to the students and guide them step-by-step into the Java world. It contains examples which are easy to follow and understand. Such useful approach can make more people say "Hey, I can do this! Let me try further..." and attract new developers into our community.
Yakov FaAin wrote: Hi J.D, I agree with you, object-oriented nature is important. But if I start with explaining OOP to people with different backgrounds, I''ll lose a half of my students right away. Guess what? I usually do this on the lesson #2 :) Regards, Yakov Fain
J.D. Baker wrote: What''s here is ok, but it ignores the object-oriented nature of the Java programming language. IMHO, the proper approach to Hello World in Java is a version published by Shengyang Shong (I forget where). This version of Hello World had a class with a main called SayHello that instantiated a Mouth that had a say() method that printed "hello". This example can be expanded, introducing constructors for the Mouth and overloaded say() methods. J.D.
Enterprise Open Source Magazine Latest Stories . . .
With Cloud Expo 2012 New York (10th Cloud Expo) just four months away, what better time to start introducing you in greater detail to the distinguished individuals in our incredible Speaker Faculty for the technical and strategy sessions at the conference... We have technical and st...
AMD said late Tuesday that its chief sales officer Emilio Ghilardi had left the company and that CEO and president Rory Read is going to do his job while a replacement is sought. AMD didn’t say why Ghilardi left but it’s assumed Read wants his own people. Read is relatively new to th...
During the lifespan of M3 (Monitis Monitor Manager) there has always been something lacking – timers. M3 execution procedure was outlined in this previous article. The execution mentioned in the latter was a one-time-execution, whereas server monitoring requires periodic invocati...
Red Hat is putting its bought-in Gluster scale-out NAS storage technology, acquired in October, on the Amazon cloud. It’s styled Red Hat Virtual Storage Appliance for Amazon Web Services and other clouds are supposed to follow in short order.
A new episode of the screencast series is now available at the OpenNebula YouTube Channel. This screencast demonstrates the new easily-customizable self-service portal for cloud consumers. Its aim is to offer a simplified access to shared infrastructure for non-IT end users. The scree...
C12G Labs has just announced an update release of OpenNebulaPro, the enterprise edition of the OpenNebula Toolkit. OpenNebula 3.2, released two weeks ago, brings important benefits to cloud providers with a new easily-customizable self-service portal for cloud consumers, and builders w...
Subscribe to the World's Most Powerful Newsletters
Subscribe to Our Rss Feeds & Get Your SYS-CON News Live!
Click to Add our RSS Feeds to the Service of Your Choice:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021


SYS-CON Featured Whitepapers
ADS BY GOOGLE