views:

270

answers:

10
+2  Q: 

Java Documentation

Hi guys,

I have a school project which has to be coded in java and I'm having a little trouble getting started, mainly finding good documentation for this language.

Is there anything for java like what http://www.php.net is for php?

+1  A: 

http://java.sun.com/j2se/1.5.0/docs/

Aaron Maenpaa
+4  A: 

There are APIs and tutorials available from Sun.

Thomas Owens
+8  A: 

There's the standard library API at http://java.sun.com/javase/6/docs/api/ (for Java 1.6)

stak
A: 

http://www.jdocs.com/ has API info and documentation for lots of common java libraries in addition to the java platform.

hopper
A: 

Java Tutorials/trails should get you started, if you have some basic experience programming.

A: 

Another Javadoc site is DocWeb.

A: 

Hello,

have a look at the book "Thinking in Java" by Bruce Eckel. The third edition is free (link)...

pgras
A: 

The Java language specification is a fairly dry, but useful resource.

Hank
A: 

Java How to Program, 6/e

its a good reference for beginners.

fernandogarcez