本文介绍了将.jar文件转换为JAVA DOC的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 如何将我的jar文件放到网上。即是否有一个软件可以反编译jar文件并制作它的html页面? 换句话说我想创建一个java doc。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.推荐答案我创建了一个 JAVADOC 来自 jar 文件,不是由您创建的,即您没有源代码。I have created a JAVADOC from a jar file that is not created by you i.e you don't have its source code.简单但棘手。 使用java反编译器从.jar文件获取源代码。我使用 JD-GUI | Java Decompiler 在myEclipse中创建一个新项目并复制源文件夹中的源代码。 在项目中菜单,您会看到生成Javadoc 。单击并选择您的项目并按照步骤操作。完成后,Java doc就会准备就绪。Get source code from .jar file by using java decompiler. I use JD-GUI | Java DecompilerMake a new project in myEclipse and copy the 'source code' in source folder.In project menu you will see Generate Javadoc. Click and select you project and follow the steps. Java doc will be ready after you finish it.干杯 Imran Tariq 这篇关于将.jar文件转换为JAVA DOC的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-02 00:15