码迷,mamicode.com
首页 > 编程语言 > 详细

在运行Eclipse时明确指定要使用的Java VM

时间:2019-06-02 01:20:47      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:explore   技术   内容   path环境变量   other   必须   argument   exp   快捷方式   

创建桌面快捷方式

技术图片

Specifying the Java virtual machine
Here is a typical Eclipse command line:

eclipse -vm c:\jdk6u22\jre\bin\javaw

Tip: It‘s generally a good idea to explicitly specify which Java VM to use when running Eclipse. This is achieved with the "-vm" command line argument as illustrated above. If you don‘t use "-vm", Eclipse will look on the O/S path. When you install other Java-based products, they may change your path and could result in a different Java VM being used when you next launch Eclipse.

To create a Windows shortcut to an installed Eclipse:

1.Navigate to eclipse.exe in Windows Explorer and use Create Shortcut on the content menu.
2.Select the shortcut and edit its Properties. In the Target: field append the command line arguments.
Opening this shortcut launches Eclipse. (You can drag the shortcut to the Windows Desktop if you want to keep it in easy reach.)

D:\eclipse\eclipse.exe -vm D:\JRE6\bin\javaw.exe

技术图片

D:\eclipse\eclipse.exe -vm "D:\JRE 6\bin\javaw.exe"

技术图片

注意:当javaw的路径包含空格时必须使用双引号包含起来。

 

复制JRE安装文件到Eclipse根目录

技术图片

技术图片

 

编辑eclipse.ini

技术图片

技术图片

 

 在-vmargs之前插入参数,如下:

 -vm
D:\JRE6\bin\javaw.exe

技术图片

-vm
D:\JRE 6\bin\javaw.exe

技术图片

注意:即使javaw的路径包含空格,也不要使用双引号。

 设置Path环境变量

向Path环境变量追加内容(javaw的父级路径),如下:

;D:\JRE6\bin

技术图片

 

在运行Eclipse时明确指定要使用的Java VM

标签:explore   技术   内容   path环境变量   other   必须   argument   exp   快捷方式   

原文地址:https://www.cnblogs.com/rms365/p/10961447.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!