vote up 10 vote down star
3

I am interested in learning Java. What is the best online tutorial?

flag

12 Answers

vote up 12 vote down check

Actually, I think Sun's java tutorial is one of the best. http://java.sun.com/docs/books/tutorial/

link|flag
Yes, excellent guides on all topics. Great starting guide. – Carra Oct 3 '08 at 14:48
Some of its topics, like JNDI, provide the most in-depth information you'll find anywhere. It's been a fantastic resource since the beginning. I hope they'll keep it up-to-date. – erickson Oct 3 '08 at 16:02
Sun, if anyone, would want to keep their material up to date I think. :) – Ace Oct 6 '08 at 13:33
I learned swing with the Java Tutorial. It has a lot of very good examples. For sure is a good first stop. – Mario Ortegón Oct 10 '08 at 6:58
vote up 4 vote down

Straight from the horse's mouth: The Java Tutorials

link|flag
vote up 4 vote down

One of the best, and certainly the most thorough resource for me was Bruce Eckel's "Thinking in Java". It's longer and more extensive than most other tutorials that I've seen, mostly because (as I remember) it goes into the "why" of things a lot more, sort of the opposite of the "X in 21 days" type of thing. I found it easier than the sun documentation and very well written.

On top of which he puts the book up on his site for free (the earlier editions are free) http://www.mindview.net/Books/TIJ4 but it's definitely a resource worth buying if you're serious about learning the language. I don't know if the latest free edition on the site will include the more recent language features in java 1.5, which are about 2-3 years old at this point, you'd want to check that.

link|flag
vote up 3 vote down

If you want to learn Java w/ Eclipse here is a great site.

link|flag
vote up 3 vote down

The API is some great reading too! It can tell you about features of the language that you never knew.

When searching Google for the documentation on a method I search:

'Classname' Java 'version_number'

For example:

String java 6

That will pull up the API for the String class in the newest version of the API.

link|flag
Agreed, the API is the best guide ever, at least for intermediate developers or higher. It's kind of like the man pages in linux, you have to know about something in order to get help with it. :D – Ace Oct 3 '08 at 14:50
You do need to be a little more knowledgeable to use the API. But I think it is something that beginner programmers need to learn how to use as early as possible. – jjnguy Oct 3 '08 at 14:52
vote up 1 vote down

Thinking In java beats the sun tutorial for learning purposes

Once you get the hang of it use The Really Big Index for studying specific issues like the Collection API

link|flag
vote up 1 vote down

Easy, do a whole university course on it.

It's all free. :)

link|flag
vote up 0 vote down

The JGloss page on getting started in Java is well worth reading. The rest of the glossary is also a very good resource for reading up on particular aspects of Java.

link|flag
vote up 0 vote down

Original Sun's Java tutorial is good. Look at ther boo Thinking in Java too.

link|flag
vote up 0 vote down

If you like your books concise and succinct, you might try

Java Precisely

It tends to appeal to folks who don't want the tons of examples given in programming books, because they would rather use the principles to deduce what the language will do.

link|flag
vote up 0 vote down

If this is not your first programming language, then the JLS would be a better option. It is the definitive book on Java.

link|flag
I disagree. Language specifications are not tutorials in any sense. If you're trying to learn a language, the specification really isn't going to help you very much. Later on, when you become a language lawyer, it's your most invaluable reference, of course, but until then, there are ample better resources. – Rob Sep 19 at 15:37
vote up 0 vote down

One of the best site for java is javapassion.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.