Home Java Java-get-example Java get Heap Size



Java get Heap Size
Posted on: November 1, 2008 at 12:00 AM
In this section, we are going to illustrates you how to obtain the heap size. The heap is the area in the memory used for memory storage during the runtime of the program.

Java get Heap Size

     

In this section, we are going to illustrates you how to obtain the heap size. The heap is the area in the memory used for memory storage during the runtime of the program. 

getRuntime()- This method returns the runtime object of the current Java application.

totalMemory() - This method returns the total amount of memory in the JVM.

 

 

Here is the code of GetHeapSize.java

public class GetHeapSize
{
  public static void main(String[]args){
  long heapSize = Runtime.getRuntime().totalMemory();
  System.out.println("Heap Size= "+heapSize);
  }
}

Output will be displayed as:

Download Source Code

Related Tags for Java get Heap Size:
cmemorytimeioruntimesizesedheapstorageurithisaiforprogramtoramruneilareasectionuseiminmnttresemagememomehowprorateratestorsatisimellgoeaduarstrzruntsruntsriringthstapeappronogro


More Tutorials from this section

Ask Questions?    Discuss: Java get Heap Size   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.