How can I put my jar file to web. i.e is there a software that decompile jar file and make html pages of it? In other words I want to make a java doc.
|
|
[Edit according to user comment] So you want to extract javadoc from a jar... First you must understand that if your jar doesn't contain the sources, but only the compiled code that your javadoc will not show any comment. Then you just need to extract the file in your jar using any zip program (for exemple on windows, rename file to .zip, and extract it). Last thing to do, is to call the javadoc tool on it. Like other said you can use an IDE for that, or simply call from the command line : http://download.oracle.com/javase/1.5.0/docs/tooldocs/windows/javadoc.html#examples
|
|||||
|
|
|
Creating Javadoc the way it was intended works, as far as I know, only from sources. If the JAR file also contains the source files, then it's just a matter of writing a Java program that opens the JAR file and puts any source files through the javadoc utility. Interesting idea, but I don't know of anything doing that at the moment. To my knowledge it is however possible to generate Javadoc from inside of java program. Another approach would be to load the classes into your classpath and use reflection to figure out methods, fields, etc. It will give you a rough overview of the classes, but sadly not the detailed stuff "normal" javadoc generation gives you. A lot of information is discarded upon compilation. |
|||
|
|
|
Converting .jar file to html seems impossible, except if you intend to users to download the .jar file from the web. However, html to .jar is possible. I am certain that only the java source can be converted to javadoc. See here to convert java source to javadoc. |
|||
|
|
|
I have created a JAVADOC from a jar file that is not created by you i.e you don't have its source code. Its simple but tricky.
Cheers |
||||
|
|
|
Once you downloaded your APK file , You need to do the following steps to get a editable java code/document.
|
||||
|
|

