http://blog.csdn.net/hongweigg/article/details/9987649
在Eclipse启动的过程中,它会去找系统环境变量设置的JRE_HOME或JDK_HOME去找JRE(Java Runtime Enviroment)。当系统中装有多个版本的JDK或JRE时,很容易给人造成混乱,不知道Eclipse使用的到底是哪一个JRE,这里可以人为指定一个JRE,让其在特定的环境运行。
- -vm
- D:/UAP Studio/eclipse/jre/bin
- -startup
- plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
- --launcher.library
- plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.100.v20110502
- -showsplash
- com.sgcc.uap.ide
- --launcher.XXMaxPermSize
- 128m
- --launcher.defaultAction
- openFile
- -vmargs
- -Xms40m
- -Xmx1024m
你要做的工作是在eclipse目录下,打开eclipse.ini文件进行编辑,在头部加上参数
-vm
D:/UAP Studio/eclipse/jre/bin
第二行为JRE的bin目录或javaw.exe(或java.exe)所在路径,即下面两种写法均可:
D:/UAP Studio/eclipse/jre/bin
或
D:/UAP Studio/eclipse/jre/bin/javaw.exe
编辑完后保存ini文件,重启eclipse即可。