views:

2413

answers:

6

I am very likely to be starting a new project at work and will need to use the Java Swing library. I would like to get up to speed pretty quickly, preferably in the next two months. What do you consider to be the best documentation (either online or in book form) to help me get a solid grasp on the library?

+2  A: 

Swing, Second Edition

I had the first edition of this book back in 2001, and it was great.

David Crow
+3  A: 

This is where I learned all I know about Swing. Straight from the horses mouth!

(The Java tutorials)

jjnguy
+6  A: 
  1. The Swing Tutorial
  2. A beginner's Swing Tutorial
  3. Swing Wiki
  4. Java Swing by Robert Eckstein
  5. Swing Labs
swapnonil
It's best to put one item per answer so we can vote on one item.
jjnguy
+1  A: 

I learnt by pulling apart the good old SwingSet2.jar demo that comes with the JDK. It illustrates all the core features and tabs the code beside each demo.

Its in JDK/demo/jfc/SwingSet2. Or you can launch it from here.

Garth Gilmour
A: 

Swing Hacks

Not sure how relevant it is today as I haven't used Swing in years but this book is awesome. Great format of code samples and explanation.

dotjoe
A: 

This really helped me to understand layout management.

andyb