posted 22 years ago
It sounds like the javadoc tool can not locate your files. You may have to specify the sourcepath
So lets say that your .java files are in the C:\Java\test\ directory
then you would do:
C:>javadoc -sourcepath C:\Java\test\
or
C:\Java\test>javadoc -sourcepath "."
If this doesn't work then also try specifying the class path in the same manner using the -classpath argument.
Hope this helps.
SCJP 1.4<br /><a href="http://www.cise.ufl.edu/~sih" target="_blank" rel="nofollow">www.cise.ufl.edu/~sih</a>