将eclipse的java编译器更改为jdk7
我正在尝试从 jre6 和 jdk6 升级到 jre7 和 jdk7。 我使用 eclipse 进行编程,我下载并安装了 jre7 和 jdk7: C:\程序文件\java\ 现在,当我进入 eclipse 时,我想更改使用的编译器,所以我转到: 窗口>首选项>java>编译器 但只出现了1.3、1.4、1.5和1.6 我还输入了: 窗口>首选项>java>已安装的JRE 并添加了jre7版本。但编译器我无法改变。 如何更改我的 eclipse 编译器?
I'm trying to upgrade from jre6 and jdk6 to jre7 and jdk7.
I program using eclipse, i downloaded and installed the jre7 and jdk7 on:
C:\program files\java\
now when I enter eclipse i want to change the used compiler so i go to:
window>preferences>java>compiler
but there appears only 1.3,1.4,1.5 and 1.6
I've also entered:
window>preferences>java>Installed JREs
and added the jre7 version. But the compiler I can't change.
how do I change my eclipse compiler?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您需要至少升级到 Eclipse Indigo SR1,该版本已经发布一个多月了。另请参阅 Eclipse 宣布全面支持 Java 7。
作为证据,这是我的 Indigo SR1 首选项的屏幕:
这是使用 Diamond 的可执行代码片段的示例操作员和 ARM:
You need to upgrade to at least Eclipse Indigo SR1, which has been out for over a month. See also Eclipse announces full Java 7 support.
As evidence, here's a screen from my Indigo SR1 preferences:
And here's an example of executabele code snippet using diamond operator and ARM:
您需要更新版本的 Eclipse。至少 3.7SR1。
You need a newer version of Eclipse. At least 3.7SR1.
3.6 Eclipse版本就够了。我在 JDK1.7 上使用同样的方法
3.6 Eclipse version is enough. I`m using the same with JDK1.7
转到
窗口>首选项 > Java >安装的 JRE
。然后单击
添加...
并选择标准虚拟机
。您需要指定 JRE 的目录并为其命名。
完成后,只需在同一窗口中检查正确的 JRE。
默认情况下,选中的 JRE 会添加到新创建的 Java 项目的构建路径中。
(我的Eclipse SDK版本是3.7.0)
Go to
Window > Preferences >Java > Installed JREs
.Then click
Add...
and selectStandard VM
.You need to specify the directory of your JRE and give it a name.
When you are done, just check the right JRE in the same window.
By default, the checked JRE is added to the build path of newly created Java projects.
(my Eclipse SDK version is 3.7.0)