PDA

View Full Version : [SOLVED] Java API Reference guide



lifelike27
October 8th, 2011, 09:21 PM
Hey,

I'm looking for a good Java API book (or preferably a PDF). Does anyone know of a good one? Basically I need a book with the possible commands you can use in Java will an example or two. For example, object.length(), explaining what it does with a small example.

Thanks in advance guys!

Lifelike27

MrStill
October 9th, 2011, 02:31 PM
Hello,

Is it a requirement that it be a book? Oracle maintains an online reference that explains all of the standard Java classes:

http://download.oracle.com/javase/7/docs/api/

Also, for the larger concepts, threading, GUI, and such they post tutorials.

The Java API is actually quite large and it would be difficult to write a comprehensive book.

Otherwise, McGraw Hill publishes what they call "Java The Complete Reference." I bought this book years ago; but, I abandoned it once I learned to read the online documentation. Essentially its a $60 bookshelf decoration.

ofnuts
October 9th, 2011, 05:14 PM
Hello,

Is it a requirement that it be a book? Oracle maintains an online reference that explains all of the standard Java classes:

http://download.oracle.com/javase/7/docs/api/

Also, for the larger concepts, threading, GUI, and such they post tutorials.

The Java API is actually quite large and it would be difficult to write a comprehensive book.

Otherwise, McGraw Hill publishes what they call "Java The Complete Reference." I bought this book years ago; but, I abandoned it once I learned to read the online documentation. Essentially its a $60 bookshelf decoration.+1

The online tutorials are pretty good and cover much ground. If you enter the Swing/AWT territory, you can also let the graphic editor build the windows for you for a couple of simple apps, and then reverse-engineer its output using the online API doc.

lifelike27
October 10th, 2011, 06:57 AM
The Oracle documentation is really good and pretty much exactly what I want, but I wanted it as a singular data source - one file that I can take around when I don't have internet access.

I have a habit of reading PDF files on my phone through Dropbox. Basically, a downloadable index of the documentation.

ofnuts
October 10th, 2011, 07:40 AM
The Oracle documentation is really good and pretty much exactly what I want, but I wanted it as a singular data source - one file that I can take around when I don't have internet access.

I have a habit of reading PDF files on my phone through Dropbox. Basically, a downloadable index of the documentation.The whole Java API doc is downloadable (IIRC tutorials are a separate package but downloadable all the same).

lifelike27
October 10th, 2011, 07:42 AM
The whole Java API doc is downloadable (IIRC tutorials are a separate package but downloadable all the same).


Oh well, seem they're down at the moment... Does it seem to be working for you? A working link would be nice.


This site is experiencing technical difficulty. We are aware of the issue and are working as quick as possible to correct the issue.

We apologize for any inconvenience this may have caused.

To speak with an Oracle sales representative: 1.800.ORACLE1.

To contact Oracle Corporate Headquarters from anywhere in the world: 1.650.506.7000.

To get technical support in the United States: 1.800.633.0738

ofnuts
October 10th, 2011, 08:17 AM
Oh well, seem they're down at the moment... Does it seem to be working for you? A working link would be nice.
http://download.oracle.com/javase/6/docs/

Yes, down for me too.

lifelike27
October 19th, 2011, 04:29 AM
Hey, just wanted to say that I was able to download the entire documentation for jdk 6 on the oracle website here: http://www.oracle.com/technetwork/java/javase/downloads/index.html#docs

Going to try and see if I can do the same with the Android docs. :)

Thanks again guys!