如何将Javadocs添加到Eclipse


Answers:


10

要将Javadoc添加到Eclipse:

  • 根据需要下载尽可能多的Javadoc软件包(它们应位于zipjar存档中)。
  • 打开Eclipse首选项,然后浏览至Java -> Installed JREs。单击您使用的默认JRE,然后单击Edit右侧的按钮。
  • 在弹出的窗口中,单击Add External JARs右列,然后导航到保存档案的位置(您可能希望将其保存在偏僻的地方,因为如果删除档案,则Javadoc将无法工作不再)。
  • 选择档案,然后单击确定Open。这应该可以识别Javadoc存档,并帮助您完成代码和编写文档(您可能必须重新启动IDE才能生效)。

您可以在此处找到Java SE开发套件7文档

**您未指定所使用的操作系统,因此每个操作系统可能会略有不同。*


我找不到jsr118文档
markon 2010年

我使用Windows XP
markon 2010年

@mark看起来Oracle没有为MIDP2.0规范提供可下载的Javadoc,仅提供了发布在其站点上的HTML文档。
squircle

1
请注意,您无需解压缩zip文件,只需将其添加!
2016年

我在javadoc档案中找不到关于“ index.html”或“ location-path”的奇怪消息,但index.html显然在档案的根目录中。
Geremia '18

7

右键单击Project Explorer中的JAR文件-> Properties- >从左窗格中选择Javadoc Location- >输入jar文档的URL。

通常,您可以使用Google搜索:javadoc lib-name然后选择Google建议的第一个站点的URL-向上一级。

例如,Google返回了以下代码:
http : //docs.oracle.com/javame/config/cldc/ref-impl/midp2.0/jsr118/index.html,
因此,上一层意味着:
http:// docs .oracle.com / javame / config / cldc / ref-impl / midp2.0 / jsr118 /

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.