Java Developers Kit

Version 1.0

JDK Documentation - FTP Instructions

The following documents are available in tar and zip format from our FTP site. Check our Mirror Sites FTP Page as well.

The following packages contain all the documents listed above, in PostScript format (there is one file in PostScript format for each API package):

-rw-r--r--   1 root     staff     618347 Jan 23 09:14 JDK-1_0-psdocs.tar.Z
-rw-r--r--   1 root     staff     501002 Jan 23 09:14 JDK-1_0-psdocs.zip
The following packages contain only the API documents, in HTML format:
-rw-r--r--   1 root     staff     579826 Jan 23 09:14 JDK-1_0-apidocs.tar.Z
-rw-r--r--   1 root     staff     467503 Jan 23 09:14 JDK-1_0-apidocs.zip

The simplest way to download them is to click on one of the following links.

This will automatically download a compressed tar file or a zip file to your machine which you can unpack with the instructions below.

If you prefer, you can download the release via anonymous ftp from the following site:


Don't forget to put ftp in binary mode before downloading! Here's an example.

    $ ftp ftp.javasoft.com
    Name (ftp.javasoft.com): anonymous
    331 Guest login ok, send your complete e-mail address as password.
    Password: user@machine
	<< informational messages <<
    ftp> binary
    200 Type set to I.
    ftp> cd docs
	<< more informational messages <<
    250 CWD command successful.
    ftp> get JDK-1_0-psdocs.tar.Z
    200 PORT command successful.
    150 Opening BINARY mode data connection for JDK-1_0-psdocs.tar.Z (618347 bytes).
    226 Transfer complete.
    local: JDK-1_0-psdocs.tar.Z remote: JDK-1_0-psdocs.tar.Z
    618347 bytes received in 83 seconds (9.6 Kbytes/s)
    ftp> quit

Unpacking the Documentation

After downloading, you can unpack the documentation anywhere you like with the following command (use the version of unzip from ftp://ftp.uu.net/pub/archiving/zip/WIN32 ):
		zcat JDK-1_0-psdocs.tar.Z | tar xf -

	or 

		unzip JDK-1_0-psdocs.zip
This will create the directories that contain the files. Don't forget to delete the compressed file once you have unpacked it.


Java Developers Kit