About the eclipse export Javadoc process, encountered the problem, Google a bit, netizens always say, eventually it is done now share to everyone hope to help
There are two issues to note with Eclipse's default Javadoc
1. No classes related to Android are found
2. Chinese/garbled is not supported, the latter is a non-mapped character encoding problem encoded GBK
Select Project Right---Export---
Click Next
Only need to select SRC Directory
Click Next
Next
Note here two questions one is the coding problem needs to be noted to ensure that the coding of the project is also UTF-8, save Javadoc.xml
Click Finish
and then error.
This time you need to manually modify the JavaDoc
Open the project directory just under Build Javadoc.xml
Add on Android.jar and there's no problem.
Add the current version of the Android.jar path
:
Then select item Refresh
There's a javadoc.xml.
Select this file
Right-click Run as--->>ant Build
It's a success here.
Original: http://blog.csdn.net/yishanxinysx/article/details/9005252