java构建路径问题

发布于 2024-11-08 07:46:17 字数 376 浏览 0 评论 0原文

从某人的项目中,我收到此错误:

Java Build Path Problems (1 item)
Build path specifies execution environment J2SE-1.5.  There are no JREs installed in the workplace that are strictly compatible with this environment.  

我有最新的 JDK (jdk1.6.0_25)。根据我的理解,我可以执行以下操作之一:

  1. 下载J2SE-1.5环境以匹配项目。
  2. 编辑项目以符合最新的 JDK。 我该怎么做?

From someone's project, I am getting this error:

Java Build Path Problems (1 item)
Build path specifies execution environment J2SE-1.5.  There are no JREs installed in the workplace that are strictly compatible with this environment.  

I have the latest JDK (jdk1.6.0_25). From my understanding, I can do one of the following:

  1. Download the J2SE-1.5 environment to match the project.
  2. Edit the project to agree with the latest JDK. How can I do this?

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

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

发布评论

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

评论(6

能否归途做我良人 2024-11-15 07:46:17
  1. 右键单击项目、属性、Java 构建路径。
  2. 删除当前的 JRE 库。
  3. 单击添加库> JRE系统库>工作区默认 JRE。
  1. Right click on project, Properties, Java Build Path.
  2. Remove the current JRE library.
  3. Click Add library > JRE System Library > Workspace default JRE.
夏尔 2024-11-15 07:46:17

这是对此的一个很好的讨论:

基本上你应该

  1. 下载并安装 1.5 JDK。 (下载链接)
  2. 在 Eclipse 中,转至窗口首选项Java已安装的JRE
  3. 将 1.5 JDK 添加到列表中。
  4. 选择 1.5 作为编译器合规级别

Here's a good discussion on this:

Basically you should

  1. Download and install the 1.5 JDK. (download link)
  2. In Eclipse, Go to WindowPreferencesJavaInstalled JREs.
  3. Add the 1.5 JDK to the list.
  4. Select 1.5 as Compiler Compliance Level.
饭团 2024-11-15 07:46:17

选择第二个选项,编辑项目以与最新的 JDK 一致,

  • 右键单击项目中的“JRE System Library [J2SE 1.5]”,
  • 选择“属性”,
  • 选择“< strong>工作区默认 JRE (jdk1.6)

在此处输入图像描述

Go for the second option, Edit the project to agree with the latest JDK

  • Right click "JRE System Library [J2SE 1.5] in your project"
  • Choose "Properties"
  • Select "Workspace default JRE (jdk1.6)

enter image description here

临走之时 2024-11-15 07:46:17

在 Eclipse 的 Package Explorer 中,您可以右键单击项目,选择“构建路径”、“配置构建路径”以获取构建路径对话框。从那里您可以删除 1.5 JRE 的 JRE 引用,并“添加库”以添加对已安装 JRE 的引用。

From the Package Explorer in Eclipse, you can right click the project, choose Build Path, Configure Build Path to get the build path dialog. From there you can remove the JRE reference for the 1.5 JRE and 'Add Library' to add a reference to your installed JRE.

伤感在游骋 2024-11-15 07:46:17

要在 eclipse 中配置 JRE:

  • Window >首选项>爪哇>安装的 JRE...
  • 单击“添加”
  • 找到您的 JDK 的目录 >单击“确定”

To configure your JRE in eclipse:

  • Window > Preferences > Java > Installed JREs...
  • Click Add
  • Find the directory of your JDK > Click OK
ㄖ落Θ余辉 2024-11-15 07:46:17

除了 MahmoudS 的评论之外,也尝试一下这个。
将 pom.xml 中的 maven 编译器源和目标更改为您正在使用的 java 版本。说jdk7为1.7

<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>

Try this too in addition to MahmoudS comments.
Change the maven compiler source and target in your pom.xml to the java version which you are using. Say 1.7 for jdk7

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