What is the best book or piece of documentation on Java Swing? - Stack Overflow most recent 30 from stackoverflow.com2009-11-09T06:43:48Zhttp://stackoverflow.com/feeds/question/163565http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/163565/what-is-the-best-book-or-piece-of-documentation-on-java-swing7What is the best book or piece of documentation on Java Swing?jtbradle2008-10-02T17:30:15Z2009-10-08T15:02:33Z
<p>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?</p>
http://stackoverflow.com/questions/163565/what-is-the-best-book-or-piece-of-documentation-on-java-swing/163612#1636122Answer by David Crow for What is the best book or piece of documentation on Java Swing?David Crow2008-10-02T17:42:56Z2008-10-02T17:42:56Z<p><a href="http://rads.stackoverflow.com/amzn/click/193011088X" rel="nofollow">Swing, Second Edition</a></p>
<p>I had the first edition of this book back in 2001, and it was great.</p>
http://stackoverflow.com/questions/163565/what-is-the-best-book-or-piece-of-documentation-on-java-swing/163745#1637453Answer by jjnguy for What is the best book or piece of documentation on Java Swing?jjnguy2008-10-02T18:07:47Z2008-10-02T18:07:47Z<p><a href="http://java.sun.com/docs/books/tutorial/uiswing/" rel="nofollow">This</a> is where I learned all I know about Swing. Straight from the horses mouth!</p>
<p>(The Java tutorials)</p>
http://stackoverflow.com/questions/163565/what-is-the-best-book-or-piece-of-documentation-on-java-swing/163819#1638195Answer by swapnonil for What is the best book or piece of documentation on Java Swing?swapnonil2008-10-02T18:23:56Z2009-10-08T15:02:33Z<ol>
<li><a href="http://java.sun.com/docs/books/tutorial/uiswing/" rel="nofollow">The Swing Tutorial</a></li>
<li><a href="http://www.javabeginner.com/java-swing-tutorial.htm" rel="nofollow">A beginner's Swing Tutorial</a></li>
<li><a href="http://www.swingwiki.org/table%5Fof%5Fcontents" rel="nofollow">Swing Wiki</a></li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0596004087" rel="nofollow">Java Swing by Robert Eckstein</a></li>
<li><a href="https://swinglabs.dev.java.net/" rel="nofollow">Swing Labs</a></li>
</ol>
http://stackoverflow.com/questions/163565/what-is-the-best-book-or-piece-of-documentation-on-java-swing/163890#1638901Answer by Garth Gilmour for What is the best book or piece of documentation on Java Swing?Garth Gilmour2008-10-02T18:38:01Z2008-10-02T18:38:01Z<p>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.</p>
<p>Its in JDK/demo/jfc/SwingSet2. Or you can launch it from <a href="http://java.sun.com/javase/technologies/desktop/javawebstart/demos.html" rel="nofollow">here</a>.</p>