eclipse指定JDK版本启动,解决version XXX of the JVM is not suitable for this product.Version:XXX 问题

问题描述:启动eclipse时,提示version 1.7.0 of the JVM is not suitable for this product.Version:1.8 or greater is required.

eclipse指定JDK版本启动,解决version XXX of the JVM is not suitable for this product.Version:XXX 问题_第1张图片

原因分析:原因是我的笔记本安装了多个JDK版本,但是现在我的JAVA_HOME配置的是jdk1.7的路径,虽然我后来已经将JAVA_HOME改成jdk1.8的路径,并且cmd输入java -version也是1.8,启动eclipse的时候还是提示这个错误。可能重启笔记本能解决这个问题,但是我现在使用tv,无法重启电脑。

eclipse指定JDK版本启动,解决version XXX of the JVM is not suitable for this product.Version:XXX 问题_第2张图片

解决方案:去eclipse的安装路径找到eclipse.ini文件,然后在头部指定JVM的版本

-vm
D:/develop/Java/jdk1.8.0_65/bin

eclipse指定JDK版本启动,解决version XXX of the JVM is not suitable for this product.Version:XXX 问题_第3张图片

你可能感兴趣的:(操作)