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