What are the best (as in most effective) resources for learning Java?

link|improve this question

1  
Let's see...a question that was up since September 2008 and has 8K+ views was closed as not constructive. Obviously, it was viewed as having value by a lot of people. We really need to clean up the process of making these calls to close questions. – Jordan Jan 24 at 22:59
2  
So, it is now a Famous Question with 10K views. It would seem the folks who are deciding things are "...not constructive..." are out of touch with what folks find valuable... – Jordan Apr 25 at 1:15
feedback

closed as not constructive by BalusC, Sean Owen, PengOne, genesis, Robert Harvey Sep 30 '11 at 22:45

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

19 Answers

up vote 17 down vote accepted

Head First Java is the best book for beginners. The explanations are done in a very non-technical and humorous way. This makes the book interesting to read unlike the hard core dry technical books.

Once done with Head First, you can move to Java Complete Reference which is more technical and covers all aspects.

javaranch would be the best website.

link|improve this answer
feedback

Go straight to JavaRanch

link|improve this answer
1  
+1. An excellent site for the Java newbie. They keep the tone polite, encourage self learning techniques, are tolerant of neophyte questions, and have other interesting tools besides the forums--tutorials, games, book reviews, a quasi-university, etc. – Stu Thompson Sep 17 '08 at 10:37
1  
@Stu. Yes! They've definitely got the best "tone" when talking to Java-ists. Newbies and oldies alike! (-: – Rob Wells Dec 8 '08 at 22:27
feedback

The Java Tutorials, naturally.

link|improve this answer
feedback

This is how I'm learning Programming along with Java.

I am following Free Standford's Programming Methodology Video course from here:

http://see.stanford.edu/see/courseinfo.aspx?coll=824a47e1-135f-4508-a5aa-866adcae1111

The course uses the following book:

The Art and Science of Java by Eric Roberts

link|improve this answer
feedback

"Effective Java" by Josh Bloch would be my favourite Java book. It's not one for the beginner programmer, but more for someone who's migrating to Java or who wants to polish their Java.

Anyone can learn the syntax and knock up some code, but Effective Java is a series of lessons about best practices.

Another book of his, "Java Puzzlers" is also a fun read :)

link|improve this answer
feedback

I found that the best way to learn java was to write programs in it. I took a class on java, and found the only thing that really worked for me was the programming assignments. If you're starting with a basic object oriented programming foundation you really don't need a book to teach you. I spent probably 50 hours over the course of 3 months reading the java API docs: http://java.sun.com/javase/6/docs/api/. I would recommend spending some time writing some sample programs in java, relying on the java api docs.

link|improve this answer
feedback

The websites that I would recommend for new users of Java are:

www.javapassion.com - a series of online courses about Java and many of the related technologies presented by Sang Shin from Sun. I found this site to be invaluable while learning JAVA and followed the coursework for the basic Java course.

www.javaranch.com - a good collection of tutorials for Java.

link|improve this answer
feedback

Starting out, InfoQ, JavaPosse, and the JavaRanch are good resources. The JavaRanch is designed to help you learn Java up to and including various Sun Java certifications.

link|improve this answer
feedback

It depends - do you want to get start producing code NOW(tm) or do you want to learn all the aspects of Java and maybe some OO best practices while you're at it?

For a "Code, Now"-approach web tutorials are probably the best approach, and will be even easier if you have prior OO language experience.

Otherwise, I would recommend Objects First With Java. It is meant for students starting to learn Object-Oriented Programming and Java from scratch. The book provides it's own IDE, BlueJ, which is a simplified sandbox environment for making smaller Java programs that really helps when you have not yet grasped all the terms of OO-programming. Once you become more experienced you will ditch BlueJ in favor of Netbeans, Eclipse or some other "real-world" IDE, but for starters BlueJ works excellent.

Once you have completed the book (or feel you have a good grasp on Java) you can move on to some of the more reference-style books that document every tiny bit of Java, but are less accessible as you at this point will know how to approach a problem.

link|improve this answer
feedback

The best books I can suggest to start learning Java are:

  1. The Java Programing Language
  2. Thinking In Java
link|improve this answer
feedback

Another very good learning site/resource for the newbie Java programmer is Herong Yang's Tutorial Books. There are lots of tutorials there on various part of the Java libraries and platform.

link|improve this answer
feedback

This thread has good information:

http://stackoverflow.com/questions/22873/language-bookstutorials-for-popular-languages

link|improve this answer
feedback

Another post on the exact topic as well on Java books, http://stackoverflow.com/questions/26437/book-recommendation-for-java-good-practices

link|improve this answer
feedback

While there are several books that can be effective for learning a language, I find what works for me is the following:

1) Pick a small project to develop in the new language.
2) Give yourself a deadline.
3) Tell someone about your planned project, so you have a motivation to complete the task.

link|improve this answer
feedback

Heads First Java from O'Reilly http://headfirstlabs.com/books/hfjava/

One of the best programming books I've found.

link|improve this answer
feedback

Safari by far is one of the most valuable subscriptions on earth for developing in a framework rich environment like Java.

http://www.safaribooksonline.com/

link|improve this answer
feedback

You do mention how familiar you are with Object Oriented programming concepts, but I would recommend BlueJ. While this is not a book or a tutorial (look at the other answers for books and tutorials), but rather a programming environment (IDE), I would recommend it because it allows you to "code" real projects at a diagrammatic level, and then drop down into the code when needed. There are BlueJ tutorials available also.

link|improve this answer
feedback

Thinking in Java, Effective Java are excellent Java books but for beginners(not necessarily) especially absolute beginners, Head First Java is the best book for learning Java. It actually makes you learn Java and its so damn interesting with all its mock interviews and other fun stuff, you would actually enjoy the learning part and become set for all your future Android ambitions.

Javaranch is an excellent site to discuss all your Java doubts, you could also ask questions(even about the book)

link|improve this answer
feedback

The best way to learn any programming language not necessarily Java, is to open a book, seriously every book will do. learn the basic syntax and from than on just write as much code as you can.

if you have any question look up in the api, usually it would give you the right answer in no time.

if not just ask a question over here.

link|improve this answer
feedback

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