无法导入内置的java类文件(javax.naming.ldap.SortControl)

发布于 2024-08-07 08:18:05 字数 401 浏览 6 评论 0原文

我已经下载了 Openfire 源代码并开始在 Eclipse 上运行它。我收到一条错误消息,指出 javax.naming.ldap.SortControl 类不存在,如下图所示:

替代文本

由于它是内置的Java类,我该怎么做才能解决这个问题。完整源代码大约有 5 条错误消息,它们的意思都相同。

I have downloaded Openfire sources and started to run it on Eclipse. I got a error saying javax.naming.ldap.SortControl class is not there, as illustrated on the following image:

alt text
.

Since it is inbuilt Java class , what can i do to solve this problem. Full source has about 5 error messages, all of them are saying the same.

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

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

发布评论

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

评论(2

还在原地等你 2024-08-14 08:18:06

您的 JRE 有问题。 SortControl 应该位于 JRE 5< /a>.

There is some issue with your JRE. SortControl should be in the JRE 5.

夜司空 2024-08-14 08:18:06

您的 Eclipse 项目是否设置了正确的 Java 版本?正如 Thomas Jung 指出的那样, javax .naming.ldap.SortControl首先出现在Java 5 / 1.5中。如果项目配置为使用 Java 1.4 或更低版本,您将收到当前收到的错误。

javax.naming.ldap.Control 存在于 1.3 及更高版本中,并且没有错误,因此听起来项目/JRE 版本肯定是错误的。

Is your Eclipse project set up for the correct Java version? As Thomas Jung points out, javax.naming.ldap.SortControl first appeared in Java 5 / 1.5. If a project is configured to use Java 1.4 or below, you'll get the error you're currently getting.

javax.naming.ldap.Control is present in 1.3 and newer, and isn't erroring, so it definitely sounds like the project/JRE version is wrong.

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