up vote 4 down vote favorite
4
share [g+] share [fb]

I am looking for a good place to learn Java, or to download e-books regarding Java. Any help would be appreciated. Thanks.

EDIT: I come from the C# world, so my main concern is learning how to use the Java / Swing API. My favorite format is a walkthrough-type tutorial where you learn by doing, not reading.

link|improve this question

6  
Duplicate of stackoverflow.com/questions/167179/java-tutorial , or at least very similar. – Michael Myers Jun 11 '09 at 19:59
Sorry about that. I was in a hurry. – Aethex Jun 11 '09 at 22:55
feedback

8 Answers

up vote 4 down vote accepted

In addition to the Sun Java Tutorial, I like the content at the java2s Java site.

link|improve this answer
Good call on Java2S Gary. I used that to teach myself SWT – PSU_Kardi Jun 11 '09 at 19:52
feedback

Java.com has hundreds of complete, working examples, and dozens of lessons, but for book purchases refer to JAVA section Language books tutorials for popular languages

link|improve this answer
wow...why the downvote? – TStamper Jun 11 '09 at 21:08
feedback

Here is a good site:

http://www.javaranch.com

And go from there...

link|improve this answer
feedback

I would suggest http://java.sun.com/new2java/

Then for books might I suggest two of my favorites

  • Effective Java
  • Design Patterns - Elements of Reusable Object-Oriented Software
link|improve this answer
feedback

I am a believer in the value of deeply understanding the language, its APIs, and the VM. To that end, I recommend you read the Java Language Specification, the javadocs for the Core API, and the Java Virtual Machine Specification.

link|improve this answer
feedback

Maybe as you already have a bit of OO experience this might not be the best for you... But I find the "Head First" series from O'Reilly to be quite good:

Head First Java

Also see: "Head First Design Patterns" (using Java)

link|improve this answer
feedback

You know, I learned most of the important stuff in the java library from the javadocs. They are amazingly easy to navigate, and it's a really good idea to get in the habit of referencing them.

Just start here:

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

in the right-hand frame. It has a bunch of packages. Review each one and look at the package summary. This will get you the knowledge of what's available and about where to find it.

When you encounter an interesting package--click on it and explore. The package summary generally has a really good readable description of exactly what the classes does complete with class breakdowns, links to tutorials--I'm surprised they don't have circles and arrows and a paragraph on the back of each one explaining what each one was to be used as evidence against us...

When you are coding, keep the screen up. You can search for any class by name, the classes are all listed in the lower-left panel.

Finally if you "Kindof" know what method you want, there is an "Index" link at the top that will show you all the methods by name (Only works if you know the first letter). Once located, you can figure out the classes that implement that method.

link|improve this answer
feedback

The JDK comes with a number of working examples which are worth trying.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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