set path=(/usr/local/java/bin $path)
You can then use any of the JDK tools (appletviewer, javap, javac, javadoc,
jdb).
(The SunOS port was done locally, please report any problems or bugs to unix@csi.uottawa.ca.)
set path=(/usr/local/java/jdk1.1/bin $path)
(Again, the SunOS port was done locally, please report any problems or bugs to unix@csi.uottawa.ca.)
set path=(/usr/local/java/jdk1.1.3/bin $path)
If you don't
set your path for the Sun JDKs
you will be using the kaffe engine if you type javac
appletviewer or javadoc. The graphical toolkit
used by kaffe is BISS AWT
which has similar functionality to the JDK Motif based toolkit but different
"look and feel."
You compile your .java files with 'javac' and run them with 'java'. For example:
javac HelloWorld.java
java HelloWorld
To run your application using the kaffe engine:
kaffe HelloWorld