How to generate Javadoc from command line

2019-01-16 13:39发布

Can anybody show me how to generate Javadoc from command line?

My project contains the package com.test and I want to put the generated documentation in files located in a specific folder like this: C:/javadoc/test.

7条回答
别忘想泡老子
2楼-- · 2019-01-16 14:38

its simple go to the folder where your all java code is saved say E:/javaFolder and then javadoc *.java

example

E:\javaFolder> javadoc *.java

查看更多
登录 后发表回答