gpt4 book ai didi

java - 无法创建 javaDoc

转载 作者:行者123 更新时间:2023-11-30 03:44:35 31 4
gpt4 key购买 nike

嗨,我的主要方法位于类名Assignment1中,包名称定义为

package assignment1;

我正在尝试从 ant 构建中制作 javaDoc。我的构建文件有

<target name="javadoc" depends="init" description="creates javadoc">
<javadoc sourcepath="." destdir="DOCS"/>
</target>

当我运行它时,我收到错误Assignment1 contains source files in the default package, you必须将它们指定为源文件而不是包。build 和 java 文件位于同一文件夹中,请告诉我我在这里做错了什么。提前致谢

最佳答案

如错误所示,您必须指定 .java 文件而不是路径,因为您的类未声明为位于任何包中。在你的<javadoc>里面元素,尝试添加 <fileset> :

<javadoc destdir="DOCS">
<fileset dir="."/>
</javadoc>

来自Ant documentation对于 <javadoc> 中的嵌套文件集任务:

All matched files will be passed to javadoc as source files. Ant will automatically add the include pattern **/*.java to these filesets. Nested filesets can be used to document sources that are in the default package.

关于java - 无法创建 javaDoc,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26062344/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com