All tutorials are implemented in text (here), and also with exercises and multimedia in the Tutorial Player. The main home page has a search engines, and more facilities.
InstallationGoto http://www.sun.com and download the JDK (Java Development Kit). You need to change the classpath and path statements in your AUTOEXEC.BAT file if you are running DOS/Windows. The path needs to have your source directory and also the bin directory for the JAVA program. The classpath needs to have the directory name of the .class files which are created by the following command:
javac programName.java (You can issue this in DOS)
Then programName.class is produced, you run this by typing:
java programName
To check your installation, enter just javac and you should get back a screen of options. This checks that the operating system can find the JAVA program.
Also check your version number of Java, by typing java -version.