show/hide this revision's text 2 Reformatted to make a bit more readable.

tl;dr: Effective Java in general, Java Concurrency in Practice for important projects.

This is what I think you're asking: you would like more information on how to use Java effectively, efficiently and well but are not looking for the larger world of software engineering and architecture at this time.

Given that, I think you need to consider three books(listed in order of their focus on syntax vs. complexity but in reverse order of importance):

  1. Thinking While the third may be handy as you get started in Java(4th edition) by Bruce Eckel is a solid reference for syntax and usage. Admittedly, this information I think the first two will become progressively more out of date over time but a reference like this is never a bad thing be useful to have on hand. you for years:

    1. Effective Java (2nd edition) by Josh Bloch is an excellent list of "don't do this and here's why" points of information. I think of it as the flip side of Thinking in Java. For example: a common mistake made by C++ programmers new to Java is to think that you should use finalizers to simulate the destructors of C++ but that's not what they are. Quoting Item 6: Avoid finalizers, they "are unpredictable, often dangerous, and generally unnecessary."
      Note: if you ever read Meyers's Effective C++ books back in the day, this is the same sort of thing.

    2. Java Concurrency in Practice by Brian Goetz et al is the most important Java book that I have on my bookshelf. It is a critical reminder that Java is multi-threaded, all the time. If you ever want to write even the simplest useful program that has a user interface, accesses the disk / database and has any form of network traffic, multi-threading issues are going to be at the forefront of your brain. This book clearly lays out things you should never do, techniques that will often work and describes the pathological situations where there is no perfect answer, all in a very readable package.

    3. Thinking in Java (4th edition) by Bruce Eckel is a solid reference for syntax and usage. Admittedly, this information will become progressively more out of date over time but a reference like this is never a bad thing to have on hand.

    Summary: Thinking in Java is good when you're new to Java, Effective Java is useful as you gain confidence and Java Concurrency in Practice is what you need when you are ready to see just how far Java can take you.

show/hide this revision's text 1

This is what I think you're asking: you would like more information on how to use Java effectively, efficiently and well but are not looking for the larger world of software engineering and architecture at this time.

Given that, I think you need to consider three books (listed in order of their focus on syntax vs. complexity but in reverse order of importance):

  1. Thinking in Java (4th edition) by Bruce Eckel is a solid reference for syntax and usage. Admittedly, this information will become progressively more out of date over time but a reference like this is never a bad thing to have on hand.

  2. Effective Java (2nd edition) by Josh Bloch is an excellent list of "don't do this and here's why" points of information. I think of it as the flip side of Thinking in Java. For example: a common mistake made by C++ programmers new to Java is to think that you should use finalizers to simulate the destructors of C++ but that's not what they are. Quoting Item 6: Avoid finalizers, they "are unpredictable, often dangerous, and generally unnecessary." Note: if you ever read Meyers's Effective C++ books back in the day, this is the same sort of thing.

  3. Java Concurrency in Practice by Brian Goetz et al is the most important Java book that I have on my bookshelf. It is a critical reminder that Java is multi-threaded, all the time. If you ever want to write even the simplest useful program that has a user interface, accesses the disk / database and has any form of network traffic, multi-threading issues are going to be at the forefront of your brain. This book clearly lays out things you should never do, techniques that will often work and describes the pathological situations where there is no perfect answer, all in a very readable package.

Summary: Thinking in Java is good when you're new to Java, Effective Java is useful as you gain confidence and Java Concurrency in Practice is what you need when you are ready to see just how far Java can take you.