This document instructs you on how to setup a Java programming
environment for your Windows XP computer and provides a step-by-step
guide for creating, compiling, and executing a Java program.
(Other flavors of Windows are similar, but
but you might need to make some minor adjustments.)
All of the software is freely available on the Web.
Java |
You will use the Java compiler javac to compile your Java programs and the Java interpreter java to run them.
In Windows XP, you might need to switch to classic view instead of category view to discover all of the options.
Command Line Interface |
You will type commands in an application called the Command Prompt.
Microsoft Windows XP [Version 5.1.2600] (C) Copyright 1985-2001 Microsoft Corp.
Then type Then typeC:\Documents and Settings\wayne>java -version java version "1.5.0_06" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-b05) Java HotSpot(TM) Client VM (build 1.5.0_06-b05, mixed mode, sharing)
You should see something like:C:\Documents and Settings\wayne>javac -version
javac 1.5.0_06 javac: no source files ...
The mkdir command creates a new directory; the cd command changes the current working directory. After executing these commands, your working directory is the newly created C:\introcs\hello. All of your files for Assignment 0 will go here. Don't be intimidated by the Command Prompt - you will only need to use a few basic commands. Keep this window open since you will need it later in the assignment.C:\Documents and Settings\wayne>cd c:\ C:\>mkdir introcs C:\>cd introcs C:\introcs>mkdir hello C:\introcs>cd hello C:\introcs\hello>
Click OK and check Save properties for future windows with same title to make the changes permanent.
Text Editor |
You will type and edit your programs in a text editor called JEdit. JEdit is similar to conventional word processors like MS Word and Notepad, but it features many specialized programming tools including syntax highlighting, bracket matching, auto indenting, indent shifting, line numbering, and commenting out code.
Create the Program |
Now you are ready to write your first Java program.
public class HelloWorld { public static void main(String[] args) { System.out.println("Hello, World"); } }
Compile the Program |
It is now time to convert your Java program into a form more amenable for execution on a computer.
If javac complains in some way, you mistyped something, and you should check your program carefully. Ask for help if you can't see the mistake.C:\introcs\hello\>javac HelloWorld.java
Silence is golden in computer science.C:\introcs\hello\>javac HelloWorld.java C:\introcs\hello\>
Execute the Program |
Now it is time to run your program. This is the fun part.
C:\introcs\hello\>java HelloWorld
C:\introcs\hello\>java HelloWorld Hello, World
Troubleshooting |
Here are a few suggestions that might help correct any installation woes you are experiencing. If you need assistance, don't hesitate to contact a staff member.
I can't install JEdit. When I double-click the .jar file, it's not associated with any programs. What can I do? First, make sure that Java 1.5 is installed. Then, when it prompts you for an application to associate to .jar files, select "Java". Alternatively, from the command prompt, cd to the directory containing .jar file and execute the program as follows:
cd C:\Downloads java -jar jedit42install.jar
When I type, "java -version" I get an error. Check that you edited your Path environment variable as indicated. A missing ; or an added % is enough to screw things up. Close and re-open a command prompt. Type path at the command prompt and look for an entry that includes C:\Program Files\Java\jdk1.5.0_06\bin;. Check that the version number 1.5.0_06 matches the one you installed since Sun updates Java periodically and you might have a more recent version. If this doesn't fix the problem, check if you have any old versions of Java on your system. If so, un-install them and re-install Java.
The command "java -version" works, but not "javac -version". Any thoughts? It's likely a path issue. Try the suggestions from the previous question. Also check that you installed the JDK properly by checking that the folder Program Files\Java\jdk1.5.0_06\bin exists.
How can I check the values of my PATH and CLASSPATH variables? Type the following at the command prompt.
The PATH variable should begin with C:\Program Files\Java\jdk1.5.0_06\bin;. The CLASSPATH variable should either be empty (%CLASSPATH%) or it should begin with .;.C:\introcs\hello\> echo %PATH% C:\introcs\hello\> echo %CLASSPATH%
I can compile with javac, but I get the error message "Exception in thread "main" java.lang.NoClassDefFoundError: HelloWorld" when I try to execute it with java. First, be sure that HelloWorld.class is now in the current directory. Be sure to type java HelloWorld without a trailing .class or .java. Check that the command "java -version" works. Now try to execute with "java -cp . HelloWorld". If this works, you have an environment variable (system or user) set for the CLASSPATH. If so, prepend .; to the beginning of your CLASSPATH variable using the same method that you used to edit your PATH variable. (iTunes has a proclivity for changing the CLASSPATH variable, so if you recently upgraded iTunes, this is likely the source of the problem.)
I followed the instructions above for associating .java files with JEdit, but it doesn't work on my system. How can I fix it? Do the following steps.
"C:\Program Files\Java\jdk1.5.0_06\bin\javaw.exe" -jar "C:\Program Files\jEdit\jedit.jar" %1
If you get a Restore button instead of Advanced, click it and it becomes Advanced.