javaFx 开发系列-安装e(fx)clipse插件

e(fx)clipse 安装步骤可以查看官网:
http://www.eclipse.org/efxclipse/install.html

You'll need at least JDK 7u7 installed in your system. Make sure your e(fx)clipse installation uses this JDK.

需要JDK 7u7 以上的版本,不然更新的时候会安装不了,所以eclipse的启动JVM需要更改

更改办法是修改eclipse.ini文件
例:

-startup
plugins/org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20140116-2212
-showsplash
org.eclipse.platform
--launcher.defaultAction
openFile
--launcher.appendVmargs
-vm
C:/Program Files/Java/jdk1.7.0_55/bin/javaw.exe
-vmargs
-Xms40m
-Xmx1024m
-XX:MaxPermSize=512m
-Dsun.lang.ClassLoader.allowArraySyntax=true

期间碰到 eclipse exit code 13 可以查看
\eclipse\configuration下生成的log文件,来判断错误

猜你喜欢

转载自lvze1983.iteye.com/blog/2051714