|
Compiler How-to
Here you will find brief instruction on how to use common Java IDE (Integrated Development Environment). My recommendation is to use the compiler that comes with the JDK (Java Development Kit) from Sun. Many (all?) of the commercial Java IDE come with a visual editor that lets you design user interface objects interactively. Visual editors are useful when you attain certain level proficiency in writing Java programs, but for the beginners, it is best not to use these tools. These visual editors generate source code automatically, but the code they generate is very cryptic, espcially to the beginners, and not very educational, so it's best to stay away from them while you are trying to learn the basics of object-oriented programming and Java.
| JDK 1.2 | To download JDK 1.2 from Sun, proceed to http://java.sun.com/products/jdk/1.2/download-windows.html. Follow the instruction provided there. |
| JBuilder | This is a popular Java IDE from Borland (it's Inprise now, but Borland is forever Borland to me since the days of Borland Pascal). Your instructor may have a free University edition for you to use. Instruction provided here is not for the most recent version of JBuilder University Edition, but the steps you need to follow essentially remain the same. |
| Visual Cafe | This is another popular Java IDE from Symantec. I personally use its Professional edition for my own work. I like VC because its compiler is fast and it will let me create Windows executable files. I don't use any of its visual editors because I don't like the source code it generates. When I use VC, I turn off the RAD elements. |
| Visual J++ 6.0 | This is a Java IDE from Microsoft. The handout describes Visual J++ version 6.0. |
| CodeWarrior | A Java IDE from MetroWerks. |
|