How to view the current heap size that an application is using?

后端 未结 7 479
小鲜肉
小鲜肉 2020-11-30 22:03

I think I increased my heap size to 1 GB in NetBeans since I changed the config to look like this:

netbeans_default_options=\"-J-Xmx1g ......
相关标签:
7条回答
  • 2020-11-30 23:05

    Use this code:

    // Get current size of heap in bytes
    long heapSize = Runtime.getRuntime().totalMemory(); 
    
    // Get maximum size of heap in bytes. The heap cannot grow beyond this size.// Any attempt will result in an OutOfMemoryException.
    long heapMaxSize = Runtime.getRuntime().maxMemory();
    
     // Get amount of free memory within the heap in bytes. This size will increase // after garbage collection and decrease as new objects are created.
    long heapFreeSize = Runtime.getRuntime().freeMemory(); 
    

    It was useful to me to know it.

    0 讨论(0)
提交回复
热议问题