The jar packets generated javadoc

  1. To find the source of a suffix jar package
  2. Establish the source folder in the directory where the package is located in the jar, javadoc folder
  3. Into the source folder in the source folder inside into cmd.
  4. Perform jar vxf ... / *** - sources.jar
  5. javadoc -d javadoc -sourcepath source -subpackages com.xxx.xxxx
  6. If the message "Error: the character encoding GBK unmappable" error, use the encoding format specified source -encoding UTF-8 file
  7. javadoc -encoding UTF-8 -d javadoc -sourcepath source -subpackages com.xxx.xxx
Published 202 original articles · won praise 6 · views 30000 +

Guess you like

Origin blog.csdn.net/fall_hat/article/details/103921686