Java offline Documentation

Java offline Documentation

why it is need ..?

If you not have or limited bandwidth internet connecion in your machine at that time it is very helpfull to solve your java programming problems. The java documentation of your project is help to easily understand the classes and functions used in that project.

How to create a java documentation ..?

It is very easy using the javadoc tool you can create a documentation for any java program. First create a documentation for java

In windows:

Extract that C:\Program Files\Java\jdk1.6.0_10\src.zip to C: then

C:\>cd src

C:\src>dir /s /b *.java > files.txt

C:\src>javadoc -J-Xmx756m @files.txt

In Linux:

[root@localhost ~]# cd /usr/local/java/jdk1.6.10

[root@localhost ~]# find -r *.java > files.txt

[root@localhost ~]# javadoc -J-Xmx756m @files.txt

Related posts:

This entry was posted in Programming and tagged . Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>