导入 com.sun.javadoc 无法在 Eclipse 中解析

发布于 2024-09-12 14:26:22 字数 412 浏览 5 评论 0原文

我在 Eclipse 中编译项目时遇到问题。

The import com.sun.javadoc cannot be resolved

我添加了tools.jar作为外部jar,更改了默认编译器以使用jdk而不是jre,做了Project -> >之后清洁。但这些都没有帮助。我在这里缺少什么?

UPD:它是这样的(包存在于左侧,但在右侧看不到): 替代文本 http://3593.iz。 piccy.info.nyud.net/i5/93/35/353593/lol.gif

I'm having problem compiling a project in Eclipse.

The import com.sun.javadoc cannot be resolved

I added tools.jar as an external jar, changed default compiler to use jdk instead of jre, did Project -> Clean afterwards. But nothing of this helped. What am I missing here?

UPD: this is how it looks like (packages exist on the left, but not seen on the right):
alt text http://3593.iz.piccy.info.nyud.net/i5/93/35/353593/lol.gif

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

戏舞 2024-09-19 14:26:22

这可能是因为您导入的 jar 存在“限制”规则。

可以通过禁用它们来禁用它们。无论是全球范围内还是仅在必要的项目上。

应该是这样的: -

  1. 右键单击​​项目
  2. 选择“项目属性”
  3. 选择页面“Java 编译器 -> 错误/警告”
  4. 启用项目特定设置
  5. 不推荐使用和受限的 API -> 禁止引用(访问规则)。 --->设置为“忽略”

It is probably because there are 'restriction' rules on the jar you are importing.

These can be disabled by disabling them. Either globally or just on the necessary project.

Should be something like:-

  1. Right click on project
  2. Select 'Project Properties'
  3. Select page 'Java Compiler->Error/Warnings'
  4. Enable project specific settings
  5. Deprecated and restricted API->Forbidden reference (access rules). ---> set to 'ignore'
桃酥萝莉 2024-09-19 14:26:22

有一个错字。
如果您尝试运行 javadoc以编程方式,您需要使用

com.sun.tools.javadoc.Main

与非

com.sun.javadoc.Main。

There's a typo.
If you're attempting to run javadoc programmatically, you need to use

com.sun.tools.javadoc.Main

and not

com.sun.javadoc.Main.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文