vote up 30 vote down star
38

Which Java book do you think is the must-have one for all Java developers?

flag

38 Answers

1 2 next
vote up 89 vote down check

Effective Java, Second Edition by Joshua Bloch. No question.

If every Java developer read this book, there would be a lot less broken code in the world.

After that, I'd read Java Concurrency in Practice, and maybe Java Generics and Collections. Anyone that reads and puts into practice the information in these three books has come a long way toward mastering Java.


Comments from duplicate "Effective Java" answers:

sammyo: It's a thin(!!) volume that focuses on real issues and how to think about the right approach to java problems. (as opposed to a listing of API methods)

Hans Doggen: First edition of Effective Java and then the second edition, to see some of the ideas that changed over time.

link|flag
2  
Choosing an "answer" for this question is unfair. Each person answering posts their own opinion and the community votes the more relevant answers up. If a book better than EJ2 is released, this page might turn out to be useless, because one opinion is already anointed as the "answer". – binil Sep 16 '08 at 19:26
show 4 more comments
vote up 4 vote down

O'Reilly's Java in a Nutshell is a good book for both tutorials and reference.

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

Agile Java: Crafting Code with Test-Driven Development is what got me started on Test-Driven Development. It helped me a lot both learning TDD and Java at the same time.

link|flag
vote up 1 vote down

Filthy Rich Clients, by Chet Haase and Romain Guy. Those guys are Swing ninjas.

link|flag
vote up 18 vote down

"Thinking in Java" by Bruce Eckel


Comments from duplicate answers:

prash: Thinking in Java by Bruce Eckel is a great book for beginners and teaches you not only the "What"s and "How"s of Java but also the "Why"s. It is available as a free download at the above link.

Michael Easter: It is an introduction and yet discusses the background behind Generics, Swing, elementary threading, and a large metaphor for Java NIO. It is a massive work that covers the range from beginner to expert. There are other books that are better for experts but would be wasted on novices.

link|flag
vote up 0 vote down

Effective Java by Bloch

It's a thin(!!) volume that focuses on real issues and how to think about the right approach to java problems. (as opposed to a listing of API methods)

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

Nobody has mentioned Dietel & Dietel's How to Program Java . I love these books, especially for their exercises.

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

"Programming in C#"

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

Head First Java is great for beginners. Effective Java will take you from journeyman to master.

link|flag
vote up -1 vote down

First edition of Effective Java and then the second edition, to see some of the ideas that changed over time.

link|flag
vote up 1 vote down

Java Threads by Scott Oaks. An excellent introduction to this difficult but important topic.

link|flag
vote up -1 vote down

Thinking In Java by Bruce Eckel is a great book for beginners and teaches you not only the "What"s and "How"s of Java but also the "Why"s.

It is available as a free download at the above link.

link|flag
vote up 2 vote down

Practical Java by Haggar. Very similar to Effective Java.

link|flag
vote up -1 vote down

Thinking In Java - Bruce Eckel

link|flag
vote up -1 vote down

Thinking in Java by Bruce Eckel. It is an introduction and yet discusses the background behind Generics, Swing, elementary threading, and a large metaphor for Java NIO. It is a massive work that covers the range from beginner to expert. There are other books that are better for experts but would be wasted on novices.

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

The Java Class Libraries by Chan Lee.

This started as a single volume, then was published as two, and who knows how it will evolve, however it is the Bible when writing Java. It's similar to but better than the online documentation.

Caution: You already have to know how to think in the object world - this isn't a beginners text, though it's an essential reference for beginners.

link|flag
vote up 5 vote down

Better, Faster, Lighter Java

By Bruce A. Tate, Justin Gehtland

Its a really good one.

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

Java Puzzlers is another great one by Joshua Bloch. The entire content of the book is just small java applications that are quirky enough that they don't necessarily behave how you might immediately think.

link|flag
1  
by J Bloch and N Gafter – Michael Easter Oct 3 '08 at 21:01
vote up 3 vote down

Java Generics and Collections by Maurice Naftalin & Philip Wadler. Philip Wadler is one of Java generics grandfather. Java is close enough to C++ that it wasn't a big deal at all for me to switch over, that was until I started using Generics. This book is a gold mine of info.

link|flag
vote up 3 vote down

Core java I and II. Hard to read but very informaitve and without excess words. This books cover every aspect in JAVA SE. But this book will be a little hard for beginners IMO.

link|flag
vote up -1 vote down

Effective Java

link|flag
vote up 1 vote down

Currently Reading through "Spring in Action" and so far it has a course set for one of my top java books.

link|flag
vote up 13 vote down

Head First Design Patterns - not necessarily a pure Java book, but essential for every Java developers who designs his applications himself.

link|flag
vote up 0 vote down

Everyone should read Effective Java once.
Thinking in Java is a good intro for transitioning programmers.

The best Java book I've read in the last 5 years was Java Concurrency in Practice by Brian Goetz

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

Java Language Specification

link|flag
vote up -1 vote down

Effective Java

link|flag
vote up 12 vote down

Refactoring by Martin Fowler

Especially the chapter about Bad Smells in Code should be understood by everyone.

link|flag
vote up 1 vote down

Wicked Cool Java

link|flag
vote up -1 vote down

I really wish you had worded the title of this question so that I could answer with books I have read in the future!

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.