Downloading Java
The Java Development Kit (JDK) is available for free download from http://java.sun.com
There are three main components: the J2SE Development Kit (JDK), the installation instructions and the documentation. They can all be downloaded from
http://java.sun.com/j2se/1.5.0/download.jsp
![]() |
|
Using Java
Java programs start off as text files and can be written using a text editor such as Windows NotePad. Before they can be run, they must first be compiled into a 'class' file using the Java compiler (javac.exe). Once correctly compiled, programs can be run using the Java.exe application.
To make life easier and to avoid having to switch from a text editor to the command line when creating programs, you can use an Integrated Development Environment (IDE). IDEs make writing easier because they help you identify errors in your code.
There are a number of Java development tools available, including Borland JBuilder, NetBeans, Sun ONE Studio (a commercial version of NetBeans), Eclipse, and WebGain Visual Café. These tools provide an integrated development environment (IDE) for rapidly developing Java programs. Editing, compiling, building, debugging, and online help are integrated in one graphical user interface. Using these tools effectively will greatly increase your programming productivity.
One of the popular IDEs is the J2SE Software Development Kit (SDK) and NetBeans Integrated Development Environment (IDE). Download this from http://java.sun.com/j2se/1.4.2/download-netbeans.html NetBean's Welcome Screen has information about how to get started.
![]() |
|



