码迷,mamicode.com
首页 > 系统相关 > 详细

Eclipse中设置JVM内存

时间:2014-06-14 15:44:49      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   java   color   

一、    尝试修改Eclipse.ini 文件

-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
-vm
C:\Java\JDK\1.5\bin\javaw.exe
-vmargs
-Xms40m
-Xmx512m

二、    修改jdk 使用内存(此方法可行)

找到eclispe 中window->preferences->Java->Installed JRE ,点击右侧的Edit 按钮,在编辑界面中的 “Default VM Arguments ”选项中,填入如下值即可。

-Xms64m -Xmx128m

 

三、    修改Run Configurations (此方法可行)

在代码上右键,依次点击“Run As ”-> “Run Configurations ”,在Arguments 参数中的“VM arguments: ”中填入如下值即可。

-Xms64m -Xmx128m

 

四、    查询当前JVM 内存代码

下面是查询当前JVM 内存大小的代码,可以测试以上设置后JVM 的内存是否会变化。增加JVM 内存的配置项后,无需重新启动eclipse 。具体的代码如下:

 1 public class TestMemory {
 2 
 3  
 4 
 5     /**
 6 
 7       * @param args
 8 
 9       */
10 
11     public static void main(String[] args) {
12 
13        System. out .println( " 内存信息 :" + toMemoryInfo ());
14 
15     }
16 
17  
18 
19     /**
20 
21       * 获取当前 jvm 的内存信息
22 
23       *
24 
25       * @return
26 
27       */
28 
29     public static String toMemoryInfo() {
30 
31  
32 
33        Runtime currRuntime = Runtime.getRuntime ();
34 
35        int nFreeMemory = ( int ) (currRuntime.freeMemory() / 1024 / 1024);
36 
37        int nTotalMemory = ( int ) (currRuntime.totalMemory() / 1024 / 1024);
38 
39        return nFreeMemory + "M/" + nTotalMemory + "M(free/total)" ;
40 
41     }
42 
43 } 

 

Eclipse中设置JVM内存,布布扣,bubuko.com

Eclipse中设置JVM内存

标签:style   class   blog   code   java   color   

原文地址:http://www.cnblogs.com/jingyunyb/p/3788062.html

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