How to generate java doc in MAC
Method1: using IDEA
Tools -> Generate JavaDocs
Check the result in your browser
Method 2: using terminal to generate javadoc
open in Finder
find the directory
open terminal
cd "the directory"
typing the commond: javadoc -encoding UTF-8 -charset UTF-8 "java file"
Then you can see your java document in the browser
Comments
Post a Comment