是否可以按池检查堆内存使用情况?

时间:2015-07-17 04:08:00

标签: java optimization memory-leaks heap-memory

我一直在努力优化一个内存泄漏问题很多的程序。泄漏现在已经消失,但主要GC的偶尔运行仍然对PS老一代产生了良好的影响。我知道我可以通过运行时检查基本的整体内存信息,但是可以在程序中检查PS eden,PS幸存者和PS old的使用情况吗?

3 个答案:

答案 0 :(得分:3)

article可以帮助您

您可以编写自定义代码来分析内存和数据。输出将采用

的形式
collection time: 82037
collection count: 116
PS Survivor Space: init = 1703936(1664K) used = 65536(64K) committed = 32047104(31296K) max = 32047104(31296K)
PS Eden Space: init = 10551296(10304K) used = 0(0K) committed = 69795840(68160K) max = 113049600(110400K)
PS Old Gen: init = 27983872(27328K) used = 239432344(233820K) committed = 357957632(349568K) max = 357957632(349568K)
Code Cache: init = 2555904(2496K) used = 19949568(19482K) committed = 20185088(19712K) max = 50331648(49152K)
PS Perm Gen: init = 21757952(21248K) used = 148450536(144971K) committed = 155058176(151424K) max = 268435456(262144K)

read

答案 1 :(得分:0)

jstat工具 - Java虚拟机统计监控工具用于监控JVM的使用情况。

请完成此link

答案 2 :(得分:0)

您可以使用Runtime类来获取堆内存详细信息。

public class GetHeapMemory {
    public static void main(String[] args) {
        System.out.println(Runtime.getRuntime().freeMemory());
        System.out.println(Runtime.getRuntime().maxMemory());
        System.out.println(Runtime.getRuntime().totalMemory());
    }
}