打开eclipse报错Version 1.7.0_80 of the JVM is not suitable for this product.Version: 1.8 or greater is r

昨天我把本机的jdk版本从1.8切换到了1.7  当时eclipse还能用,结果今天开机之后

打开eclipse时  报如下错误:

打开eclipse报错Version 1.7.0_80 of the JVM is not suitable for this product.Version: 1.8 or greater is r_第1张图片

大致意思就是说当前jdk1.7版本不支持,需要jdk1.8

此时,如果不想更改环境变量里的jdk版本,只需要如下做即可:

打开eclipse根目录

修改eclipse配置文件eclipse.ini   添加jdk1.8的bin路径

添加如下字段:
-vm
C:/Program Files/Java/jdk1.8.0_131/bin       注意/和\  

注意我标红的部分,我们在复制路径时,一般都是用的反斜杠 '\'       一定要改为斜杠 '/'  才可以。我最开始就是没注意到这个问题,导致添加了上面的字段也没有用。

完整配置如下:

-vm
C:/Program Files/Java/jdk1.8.0_131/bin
-startup
plugins/org.eclipse.equinox.launcher_1.4.0.v20161219-1356.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.551.v20171108-1834
-product
org.eclipse.epp.package.jee.product
-showsplash
org.eclipse.epp.package.common
--launcher.defaultAction
openFile
--launcher.defaultAction
openFile
--launcher.appendVmargs
-vmargs
-Dosgi.requiredJavaVersion=1.8
[email protected]/eclipse-workspace
-XX:+UseG1GC
-XX:+UseStringDeduplication
--add-modules=ALL-SYSTEM
-Dosgi.requiredJavaVersion=1.8
-Xms256m
-Xmx1024m
--add-modules=ALL-SYSTEM
-javaagent:E:\develop\eclipse-jee-oxygen-3a-win32-x86_64\eclipse\lombok.jar

如果对你有帮助,记得点个赞哦~ 哈哈

参考:

https://blog.csdn.net/weixin_42350212/article/details/81060140

https://blog.csdn.net/zhuchuanwan/article/details/77573933

你可能感兴趣的:(随笔记录)