eclipse 手动设置语言
C:\eclipse\eclipse.exe -nl zh_CN
eclipse.ini部分配置参数
-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
-product
org.eclipse.epp.package.jee.product
–launcher.defaultAction
openFile
–launcher.XXMaxPermSize
512M
-showsplash
org.eclipse.platform
–launcher.XXMaxPermSize
256m
–launcher.defaultAction
openFile
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms128m
-Xmx512m
-XX:PermSize=64M
-XX:MaxPermSize=128M
-XX:+UseParallelGC
部分参数说明
-Xmx #指定jvm的最大heap大小
-Xms #指定jvm的最小heap大小
-Xmn #指定jvm中New Generation的大小
-XX:PermSize #指定jvm中Perm Generation的最小值
-XX:MaxPermSize #指定Perm Generation的最大值
-Xss #指定线程桟大小
-XX:+UseParallelGC #让GC可以更快的执行