Offline Java Documentation - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T19:04:14Z http://stackoverflow.com/feeds/question/449558 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/449558/offline-java-documentation 2 Offline Java Documentation BCS 2009-01-16T05:05:53Z 2009-01-16T13:40:27Z <p>I've finally gotten around to learning Java and am looking for some documentation for Java that I can download and read offline. Something like <a href="http://java.sun.com/docs/books/tutorial/" rel="nofollow">Sun's stuff</a> but zipped up or as a PDF or CHM.</p> <p>I'm using Eclipse so something that integrates with that would be nice. It already seems to have some of what I want somewhere (the javadoc stuff) but I don't see how to search it and it and I'm not seeing a language ref. </p> http://stackoverflow.com/questions/449558/offline-java-documentation/449561#449561 4 Answer by Timur Fanshteyn for Offline Java Documentation Timur Fanshteyn 2009-01-16T05:09:57Z 2009-01-16T05:09:57Z <p>Full Documentation in Windows Help Format <a href="http://javadoc.allimant.org/" rel="nofollow">http://javadoc.allimant.org/</a></p> http://stackoverflow.com/questions/449558/offline-java-documentation/449564#449564 0 Answer by Mark Renouf for Offline Java Documentation Mark Renouf 2009-01-16T05:11:45Z 2009-01-16T05:11:45Z <p>Read the JavaDocs. Especially the java.util.Collections framework. The core Java library is extremely well documented for the most part. </p> <p>I also tend to browse the source to get a good understanding of how things work. You should java the src.zip set up so you can browse inside JDK classes. It will also teach you good design; learn from the masters!</p> <p>Some very useful commands to memorize in eclipse:</p> <p><strong>Ctrl-Shift-T</strong> Open Type: search as you type a class name, select it to jump directly to it. You do not need to know the package, it searches all classes by their simple names.</p> <p><strong>F4</strong> Open Type Hierarchy. With the cursor on any class reference in source or on a class in the package explorer, hitting F4 will open a type hierarchy.</p> <p><strong>Ctrl-T</strong> Quick type hierarchy. It's like F4 but opens a quick popup browser. Very convenient. My favorite use is to place it on an interface, and Ctrl-T will list all implementing classes.</p> http://stackoverflow.com/questions/449558/offline-java-documentation/449589#449589 4 Answer by Uri for Offline Java Documentation Uri 2009-01-16T05:30:59Z 2009-01-16T05:30:59Z <p>I'm not sure that I fully understand your question.</p> <p>If you are interested in materials about learning Java (rather than API references), you can <a href="http://java.sun.com/docs/books/tutorial/information/download.html" rel="nofollow">download all of it as a zip file</a>. It will be multiple HTML files, but I've never seen a real problem with browsing them unless I wanted a printout. If you need a printout of the tutorial, just get the tutorial in book form.</p> <p>If you are looking for the JavaDocs for a specific API, and you use Eclipse, your best bet might be to use the version of Eclipse that is specific for Java and comes packaged with the JDK source code (or just download the source code). You can then read the documentation of methods through different views like the Java Browsing view. </p> http://stackoverflow.com/questions/449558/offline-java-documentation/450432#450432 2 Answer by Jay R. for Offline Java Documentation Jay R. 2009-01-16T13:40:27Z 2009-01-16T13:40:27Z <p>Once you setup Eclipse for Java development using the <a href="https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_Developer-Site/en_US/-/USD/ViewProductDetail-Start?ProductRef=jdk-6u11-oth-JPR@CDS-CDS_Developer" rel="nofollow">Sun JDK</a> in Preferences->Java->Installed JREs, you can attach the <a href="https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_Developer-Site/en_US/-/USD/ViewProductDetail-Start?ProductRef=jdk-6u10-docs-oth-JPR@CDS-CDS_Developer" rel="nofollow">Sun javadoc</a> archive file to the JRE in question. Just make sure that you pick the JDK installation directory as the root of the JRE. Eclipse will automatically attach to the src archive there. Then when you make a Java project, you can use the package explorer to browse through the classes and read the javadoc by expanding the JRE System Library entry in your new project. The majority of the api is in the rt.jar.</p>