vote up 4 vote down star
8

Assuming an experienced software developer fluent in many languages, but having not entered the Java world from the ground floor, which single book related to the huge space that is the Java world would you recommend as a decent overview from which further expertise can be developed?

flag
show 1 more comment

35 Answers

1 2 next
vote up 12 vote down

Bruce Eckel's Thinking in Java:

http://www.mindview.net/Books/TIJ/

link|flag
1  
I can't really stand Eckel's writing style. He takes himself way to seriously. – PEZ Jan 11 at 8:48
1  
This book seemed OK for me until I stumbled over his "The copy constructor" contemplations (2nd edition Appendix A). Apparently He believes that there is no "slicing problem" in C++. But maybe he just does not know C++ :-) – Maxim Vladimirsky Jan 11 at 9:11
show 7 more comments
vote up 4 vote down

How about Java in a nutshell by David Flanagan. I really like his style of writing and explanation.

link|flag
show 2 more comments
vote up 15 vote down

Effective Java by Joshua Bloch. It's freaking good. If you were to chose a single book on programming, in any language, this would be a major candidate.

EDIT: Follow takacsot's advice about using Sun's online introduction. Then buy the Effective Java book. You'll never regret it.

link|flag
show 5 more comments
vote up 11 vote down

Head First Java.

link|flag
show 2 more comments
vote up 2 vote down

Robocode. I know, it's not a book. But it's a damn good way to learn Java and have really fun while at it. You'll find wiki resources at that link.

link|flag
vote up 8 vote down

No book is needed. My personal favorite is the java tutorial on http://java.sun.com. That is more than enough.

link|flag
show 2 more comments
vote up 0 vote down

Object First With Java : A Practical Introduction Using BlueJ

Depending on experience this book is a brilliant introduction to both Java and Object Orientation.

link|flag
vote up 1 vote down

Just to complete the list, a good first Java book could also be Java How To Program.

link|flag
vote up 1 vote down

"The Java Programming Language" written by one of its inventors (James Gosling)

kind regards,

Jos

link|flag
vote up 0 vote down

I think your quest for a SINGLE book would be a little difficult :)

Assuming you are an experienced developer, you probably need some resource that gives you a starting point for various things you might be interested in. For this, I would recommend the InformIT Java reference section.

And for quick access to java code snippets, I would recommend the excellent Java2S site.

link|flag
vote up 1 vote down

http://java.sun.com/javase/6/docs/api/

That is all.

link|flag
show 1 more comment
vote up 2 vote down

I believe that Java is such a big platform that no single book can cover it all.

If you need to learn object orientation, the Head First Java book does it really well.

If you need to learn the Java runtime library (which is biiig) I'd suggest wading through the Java Tutorials from Sun.

If you need a good cookbook reference http://www.exampledepot.com/ is really nice (and is printed in a book too).

The most important thing is, however, experience. Code stuff :) Project Euler http://projecteuler.net/ has a lot of simple and challenging problems and most likely have some you'd like to do.

link|flag
show 2 more comments
vote up 1 vote down

Has anyone read Introduction to Java Programming by Y.Daniel Liang? It's what I use, and it's quite a good book with plenty of detail.

link|flag
vote up 0 vote down

As you have previous programming experience, and thus don't need an introduction to control structures, object orientation etc, I would recommend Java Precisely, which is a very concise reference to most of the Java langauge.

link|flag
vote up 0 vote down

I love this one: http://www.cs.princeton.edu/introcs/home/

link|flag
vote up 0 vote down

I'd suggest the free online training courses from Sang Shin on JavaPassion.com with or without homework, just how you need it.

link|flag
vote up 5 vote down

Head first java book by Kathy Siera & Bert Bates.All the books in head first series are very very good.

link|flag
vote up 1 vote down

Learning Java by Niemeyer and Knudsen. (O'Reilly rules!!!!)

link|flag
vote up 22 vote down

Effective Java.

http://www.amazon.com/Effective-Java-2nd-Joshua-Bloch/dp/0321356683/ref=sr_1_1?ie=UTF8&s=books&qid=1243023794&sr=8-1

link|flag
1  
Why did this get more votes than the other Effective Java answer, which beat it by four months? – mmyers Jun 4 at 18:39
show 2 more comments
vote up 1 vote down

Effective Java, second edition. The second edition covers generics and other features added in the 1.5 language revision.

link|flag
vote up 2 vote down

This may be ancient now days, but I really liked Thinking in Java. It was a number of years ago but was freely available.

link|flag
vote up 11 vote down

My situation was similar to yours. I tried a couple of different books and settled on Thinking in Java by Bruce Eckel.

It assumes you know basic programming and some programming language terminology.

link|flag
show 3 more comments
vote up 3 vote down

Rather than third the excellent recommendations for "Effective" and "Thinking", I'll add "Java Concurrency In Practice" by Brian Goetz. And "Pro Spring" because I think Spring is terrific.

link|flag
show 2 more comments
vote up 0 vote down

Java Concurrency in Practice is excellent, assuming you're interested in concurrency. It assumes quite a bit of prior knowledge about Java though so as suggested should probably be a companion to some of the other recommendations (TIJ, EJ etc).

link|flag
vote up -2 vote down

Agile Java by Langr is excellent if you also want an intro to Test Driven Design and the basic agile approach.

link|flag
vote up 1 vote down

You might consider reading the Java Language Specification, it is quite readable as specifications go.

link|flag
show 2 more comments
vote up 0 vote down

5 intermediate to advanced I follow and recommend are Pragmatic Programmer (Thomas,Hunt) Applying UML and Patterns (Larman) Computer Algorithms (Baase, Van Gelder)
Object-Oriented Software Engineering (Dutoit,Bruegge) Computer Graphics (Baker,Hearn)

link|flag
vote up 0 vote down

In addition to Effective Java and JCIP.

The Java Power Tools book

link|flag
1 2 next

Your Answer

Get an OpenID
or

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