我正在使用Eclipse。问题是如果分配的内存少于512MB,我的应用程序崩溃。现在还有在开始大量内存穷举处理之前检查程序的可用内存吗? 例如,我知道我们可以将可用的JVM堆大小检查为:
long heapSize = Runtime.getRuntime().totalMemory();
System.out.println("Heap Size = " + heapSize);
问题是,这给出了JVM堆大小。即使增加它也无法使用Eclipse。在Eclipse中,如果我更改VM参数,那么它可以工作。但是,上述声明的打印输出始终相同。是否有任何命令我可以准确地知道我为特定应用程序分配了多少内存?
答案 0 :(得分:14)
您可以使用JMX在运行时收集堆内存的使用情况。
代码示例:
import java.lang.management.ManagementFactory;
import java.lang.management.MemoryPoolMXBean;
import java.lang.management.MemoryType;
import java.lang.management.MemoryUsage;
for (MemoryPoolMXBean mpBean: ManagementFactory.getMemoryPoolMXBeans()) {
if (mpBean.getType() == MemoryType.HEAP) {
System.out.printf(
"Name: %s: %s\n",
mpBean.getName(), mpBean.getUsage()
);
}
}
输出示例:
Name: Eden Space: init = 6619136(6464K) used = 3754304(3666K) committed = 6619136(6464K) max = 186253312(181888K)
Name: Survivor Space: init = 786432(768K) used = 0(0K) committed = 786432(768K) max = 23265280(22720K)
Name: Tenured Gen: init = 16449536(16064K) used = 0(0K) committed = 16449536(16064K) max = 465567744(454656K)
如果您对“Eden Space”或“Survivor Space”有疑问,请查看 How is the java memory pool divided