NetBeans第三方javadoc添加问题
我正在尝试添加 zxing java 文档。 我尝试过不同的方法:
1) Java 平台 > Javadoc,而不是工具>图书馆> Javadoc
2) * 转到项目属性>库对话框
* 在“编译”选项卡上按“添加 JAR/文件夹”按钮并找到您的库
* 在“编译”选项卡上按“编辑”按钮并选择您的库
* 添加javadoc路径
我尝试了不同的路径:
a) “javadoc”文件夹,包含index.html
b) “docs”文件夹,包含“javadocs”文件夹
c) zip 文件,包含“docs”文件夹
但这两个都没有帮助我 - 我总是收到 “未找到 Javadoc。此项的 Javadoc 文档不存在,或者您尚未在 Java Platform Manager 或 Library Manager 中添加指定的 Javadoc。”
I'm trying to add zxing java doc.
I've tried different approaches:
1) Java Platforms > Javadoc, rather than Tools > Libraries > Javadoc
2) * Go to Project Properties > Libraries dialog
* On "Compile" tab press the "Add JAR/Folder" button and locate your library
* On "Compile" tab press the "Edit" button with your library selected
* Add javadoc path
I tried different paths:
a) "javadoc" folder, containing index.html
b) "docs" folder, containing "javadocs" folder
c) zip file, containing "docs" folder
But neither of that helped me - I always receive
"Javadoc not found. Either Javadoc documentation for this item does not exist or you have not added specified Javadoc in the Java Platform Manager or the Library Manager."
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要首先添加第三方库的 javadoc,您必须在 Netbeans 内创建一个库包。
转到
库管理器(工具>库)
窗口并创建一个新库
。您必须在Library Classpath
选项卡下手动添加必要的jar文件。然后切换到 Javadoc 选项卡并提供 javadoc zip 文件的路径。
单击
OK
,Netbeans 将立即显示文档。To add a javadoc of a third party library first you have to create a library bundle inside Netbeans.
Go to
Library Manager (Tools > Libraries)
window and create aNew Library
. You will have to add necessary jar files manually underLibrary Classpath
tab.Then switch to
Javadoc
tab and give the path to your javadoc zip file.Click
OK
and Netbeans will display the documentation straight away.您应该附加 zip 文件,其中包含 index.html 和代表您的类的文件夹层次结构。不要自己创建一些文档文件夹。
you should attach zip file, containing index.html and hierarchy of folders which represent your classes. Don't make some docs folders yourself.