Duplicate:

Best Java book you have read so far

I consider myself as an intermediate to advanced level Java programmer. I am looking forward to buying some books to enhance my current knowledge in Java and programming in general. What would your recommendations be in these areas?

For Java, I heard about Effective Java being pretty good and it is actually in my current shortlist. Any others?

For general programming techniques, I already have the book on Design Pattern by Erich Gamma and am looking for something else that is similarly useful.

Thanks!

link|improve this question

78% accept rate
-1 for duplication; any answer here is almost guaranteed to be in the "Best Java Book" question or this one: stackoverflow.com/questions/1711/…. – Rob Hruska Apr 14 '09 at 14:11
Sorry, but I must be blind, I swear, I did search before posting this question, but nothing came up as what I wanted to ask. Anyway thanks for the info. – Her Apr 15 '09 at 11:09
feedback

closed as exact duplicate by cletus, Michael Myers, Bill the Lizard, Click Upvote, matt b Apr 14 '09 at 15:58

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

13 Answers

up vote 7 down vote accepted

I think this has been more or less covered here:
Best Java book you have read so far

And also:

I am looking forward to buying some books to enhance my current knowledge in Java and programming in general. What would your recommendations be in these areas?

As for programming in general, that has been even more thoroughly covered here:

Personally I would recommend that you start with Effective Java, 2nd ed, Refactoring, and The Pragmatic Programmer, and take it from there.

link|improve this answer
+1. Same thing, I was planning to do at first. Then it seemed like lot of work. – Adeel Ansari Apr 14 '09 at 10:11
I've been reading these popular book questions lately and remembered their names approximately, so it was quick to find them from stackoverflow.com/questions/tagged/books :-) – Jonik Apr 14 '09 at 10:22
Ah.. fair enough. – Adeel Ansari Apr 14 '09 at 10:33
Books: asjava.com/core-java/… – Jammy C.c Mar 16 at 5:22
feedback

Java specific

  • Java Concurrency in Practice
  • Java Power Tools (You should know these tools)
  • Test Driven: TDD and Acceptance TDD for Java Developers

Software engineering in general

  • Code Complete: A Practical Handbook of Software Construction
  • Domain-Driven Design: Tackling Complexity in the Heart of Software
  • User Stories Applied: For Agile Software Development (Addison-Wesley​ Signature Series)
  • Clean Code by Robert C. Martin
link|improve this answer
+1 for "Concurrency in Practice" alone. – duffymo Apr 14 '09 at 9:48
+1 for "Test Driven". Best tech read I've had in a long time – MrWiggles Apr 14 '09 at 12:52
feedback

Thinking in Java is one of the best for java :)

link|improve this answer
feedback

Here are a few ideas for more advanced / interesting books, none of these are really language specific:

Programming Pearls

Pragmatic Programmer

Code Complete

Patterns of Enterprise Application Architecture

link|improve this answer
feedback

Besides "Effective Java" that it's indeed the must-have book (it should not only on your short-list, but on nr. 1), you should consider the SCJP exam.

The book "SCJP Sun Certified Programmer for Java 6 Study Guide" will prepare you for the exam and at the same time consolidate the knowledge you already have. Consolidating existing knowledge (and expand it when needed) make advanced topics easier to learn. If you are advanced enough this step won't take much effort.

link|improve this answer
feedback

I agree with nxadm, the "Sun Certified Programmer for Java 6 Study Guide" is one of the best reads. Even if you don't go into every tiny little detail.

Even though it's not a read, I would also recommend doing javablackbelt.org tests so you see in which field you could use an extra lesson and then find a good book/chapter on it.

link|improve this answer
feedback

Have you read the Java Language Specification? I think its a most useful book especially once after you've got the hang of the basics.

link|improve this answer
feedback

http://www.greenteapress.com/thinkapjava/ "How to think like a computer scientist" using java.

link|improve this answer
feedback

Here is my list for any Java Programmer

Thinking in Java

Effective Java

Concurrent Programming in Java: Design Principles and Patterns

Java Puzzlers

Inside JVM

link|improve this answer
feedback

Practical API Design: Confessions of a Java Framework Architect

link|improve this answer
feedback

I thought "Teach Yourself Java in 21 Days" was pretty helpful even for intermediate programming. I use it for more of a reference when I don't have the internet handy.

link|improve this answer
feedback

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