【Tools】eclipse关于jre运行版本问题Version 1.6.0 of the JVM is not suitable for the this product.Version:1.8 or greater is required

解决办法:

1、安装jdk1.8,设置环境变量为jdk1.8,且在eclipse中设置程序jre为1.8版本;


2、如果以上设置后还是报错,在eclipse的安装目录下eclipse.ini文件中添加环境启动配置:

-startup
plugins/org.eclipse.equinox.launcher_1.3.201.v20161025-1711.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.401.v20161122-1740
-product
org.eclipse.epp.package.jee.product
--launcher.defaultAction
openFile
-showsplash
org.eclipse.platform
--launcher.defaultAction
openFile
--launcher.appendVmargs
-vm
D:\Program Files\Java\jre1.8.0_121\bin\javaw.exe

-vmargs
-Dosgi.requiredJavaVersion=1.8
-XX:+UseG1GC
-XX:+UseStringDeduplication
-Dosgi.requiredJavaVersion=1.8
-Xms256m
-Xmx1024m

上一篇:Android存储之SQLite数据库


下一篇:css的定位和浮动