如何以编程方式找出我的PermGen空间使用情况?

时间:2009-03-30 14:00:52

标签: java memory-leaks jvm-hotspot permgen

我正在尝试在Sun的Hotspot JVM上运行时诊断java.lang.OutOfMemoryError: PermGen Space错误,并且想知道我的程序在不同点上使用了多少PermGen空间。有没有办法以编程方式找到这些信息?

2 个答案:

答案 0 :(得分:38)

您可以使用以下内容:

Iterator<MemoryPoolMXBean> iter = ManagementFactory.getMemoryPoolMXBeans().iterator();
while (iter.hasNext())
{
    MemoryPoolMXBean item = iter.next();
    String name = item.getName();
    MemoryType type = item.getType();
    MemoryUsage usage = item.getUsage();
    MemoryUsage peak = item.getPeakUsage();
    MemoryUsage collections = item.getCollectionUsage();
}

这将为您提供所有类型的内存。您对“Perm Gen”类型感兴趣。

答案 1 :(得分:3)