What is the best book or piece of documentation on Java Swing? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T06:43:48Z http://stackoverflow.com/feeds/question/163565 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/163565/what-is-the-best-book-or-piece-of-documentation-on-java-swing 7 What is the best book or piece of documentation on Java Swing? jtbradle 2008-10-02T17:30:15Z 2009-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#163612 2 Answer by David Crow for What is the best book or piece of documentation on Java Swing? David Crow 2008-10-02T17:42:56Z 2008-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#163745 3 Answer by jjnguy for What is the best book or piece of documentation on Java Swing? jjnguy 2008-10-02T18:07:47Z 2008-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#163819 5 Answer by swapnonil for What is the best book or piece of documentation on Java Swing? swapnonil 2008-10-02T18:23:56Z 2009-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#163890 1 Answer by Garth Gilmour for What is the best book or piece of documentation on Java Swing? Garth Gilmour 2008-10-02T18:38:01Z 2008-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>