Now, open a command window to the folder you've just downloaded and
unzipped and go into the source_code subfolder. Within that
directory, type
javac -classpath . *.java
which says to compile all of the java files using the current directory (.)
as the "classpath," that is, the place to look for code. If there are compiler errors,
they will be printed out and you can fix them, save your file, and try again.
If your system complains about not being able to find the javac
compiler, either you don't have it or it's not in your system's path (in which
it looks for executables). Simply type the full path name (or add it to
your path), e.g.
/usr/bin/javac -classpath . *.java % on a Mac
C:\j2sdk1.4.2_05\bin\javac -classpath . *.java % on a Windows PC
/whateverpath/javac -classpath . *.java % on a linux box
When you have fixed any and all compiler errors, you can run the program with
java CS5App
with the same warnings about path names... the path to javac and
java will almost certainly be the same.