我可以在Win32机器上为JVM分配的最大堆大小是多少?

时间:2010-01-21 12:03:49

标签: windows-xp jvm heap jrockit

我在Windows XP上运行BEA JRockit JDK 5.0 Update 6。我希望知道当我的机器上有4GB的主内存时,我可以分配的最大堆是多少。

2 个答案:

答案 0 :(得分:0)

我没有JRockit,但我应该尝试一些-Xmx选项的值。 在我的JVM上,限制是1610 MB:

c:\tmp>java -version
java version "1.6.0_18"
Java(TM) SE Runtime Environment (build 1.6.0_18-b07)
Java HotSpot(TM) Client VM (build 16.0-b13, mixed mode, sharing)

c:\tmp>java -Xmx1610m mem_test
1552 MB Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
    at mem_test.main(mem_test.java:15)

c:\tmp>java -Xmx1611m mem_test
Error occurred during initialization of VM
Could not reserve enough space for object heap
Could not create the Java virtual machine.

我使用这样的程序对它进行了测试,因此您可以看到应用程序可以从可用于JVM的堆分配多少内存:

import java.util.ArrayList;
import java.io.*;

class mem_test
{
    public static void main(String[] args) 
        {
        ArrayList<byte[]> big_list = new ArrayList<byte[]>();
        int max = 0;
        int i = 0;
        while (true)
            {
            ++i;
            big_list.add(new byte[1024 * 1024]);
            max = i;
            if (i % 16 == 0)
                System.out.print("\r" + i + " MB ");
            }
        }
}

答案 1 :(得分:0)

SO link

中找到了答案