Playing with JVM / Java Heap Size.

java-logo Java programs executes in JVM uses Heap of memory to manage the data. If your Java program requires a large amount of memory, it is possible that the virtual machine will begin to throw OutOfMemoryError instances when attempting to instantiate an object. The default heap size if 1 MB and can increase as much as 16 MB.

Setting/Increase JVM heap size

It is possible to increase heap size allocated by the Java Virtual Machine (JVM) by using command line options. Following are few options available to change Heap Size.
-Xms<size> set initial Java heap size -Xmx<size> set maximum Java heap size -Xss<size> set java thread stack size
Code language: SQL (Structured Query Language) (sql)
For example, you can set minimum heap to 64 MB and maximum heap 256 MB for a Java program HelloWorld.
java -Xms64m -Xmx256m HelloWorld
Code language: HTML, XML (xml)

Getting / Reading default heap size

It is possible to read the default JVM heap size programmatically by using totalMemory() method of Runtime class. Use following code to read JVM heap size.
public class GetHeapSize { public static void main(String[]args){ //Get the jvm heap size. long heapSize = Runtime.getRuntime().totalMemory(); //Print the jvm heap size. System.out.println("Heap Size = " + heapSize); } }
Code language: Java (java)
Get our Articles via Email. Enter your email address.

You may also like...

36 Comments

  1. sarki says:

    thank you

  2. rajesh says:

    to set hep size in tomcat http://hiox.org/index.php?id=443

  3. Anika says:

    Thanks a lot
    -anika

  4. pankaj says:

    is there a way to set heap size permanently?

    • woody says:

      in windows:
      (put control panel in icon view rather than category)
      control panel > java > java > view
      and add the -Xms and -Xmx to the runtime parameters.

      • Rahul says:

        Thnx for this it works.

  5. sree says:

    No. There is no way to set heap size permanently. But we use eclipse just pass the arguments like -Xmx ..

  6. vamsee says:

    one simple way is to write a bat file to set permanently:

    we can write a bat file which opens the required jar file with proper heap size settings. For example :
    java -Xms64m -Xmx256m HelloWorld

    this can be put in a bat file.

  7. pol says:

    Im doing the bat file but I have a problem I have the .exe file… not the class
    I any wat to do it whit the .bat?
    or another way to set it?
    I don;t know if its possible in java code to change it

  8. rafikpbhdm says:

    hi my friends, well I tried to increase java heap space using run configuration in eclipse and netbeans, and the result was same ,I had NoClassDefFoundError , and when I deleted the command line (java -Xms64m -Xmx256m) and run the application again it worked normally except of course the pb of OutOfMemory exception, and even try dos prompt ,the vm didn’t recognize the option -Xmx and sometimes it just throw the excption NoClassDefFoundError,well it ‘s really weird thing and I don’t know how to explain it ,so little help will be nice.

  9. Dhana says:

    Hi All,

    How to check what is teh heap size in a windows machine in command line?

  10. rohini says:

    same error bt solution not working……!

    • faariz says:

      try cleaning the data of other unwanted projects in your tomcat/webapps folder (place where the war file will be created).

  11. Dharmvir says:

    You can read about different parts of the heap on the following link:
    http://java-espresso.blogspot.com/2011/05/heap-structure-in-jvm.html
    Gist of the article is below:

    Following are the parts in JVM heap:

    Young Generation
    Eden Space
    Survivor space
    Virtual space
    Tenured (Old) generation:
    Virtual Space
    Other Areas: Not a part of heap:
    PermGen Area
    Native Area

  12. rajesh.kolli says:

    you can read different parts of the heap on the following link:

    http://java-espresso.blogspot.com/2011/05/heap-structure-in-jvm.html
    Gist of the article is below:

    Following are the parts in JVM heap:

    Young Generation
    Eden Space
    Survivor space
    Virtual space
    Tenured (Old) generation:
    Virtual Space
    Other Areas: Not a part of heap:
    PermGen Area
    Native Area

    http://viralpatel.net/jvm-java-increase-heap-size-setting-heap-size-jvm-heap/

    http://hausheer.osola.com/docs/5

    http://www.codemiles.com/java/here-how-to-increase-java-heap-size-t663.html

  13. Dala says:

    HI
    I tried to increase the java heap size I used this command line:
    java -Xmx1K
    I have this error :
    error occurred during initialization of VM
    could not reserve enough space for object heap
    could not create the java virtual machine
    I search and found the reason of this error is Heap size is larger than my computer’s physical memory , and I don’t know if it the real reason is the physical memory , can any one help my to fixed this error .

    • Leszek says:

      java -Xmx1K -means (maybe -Xmx1k ) that maximal heap is.. 1kB, too less, try larger values like 20MB: -Xmx20m

  14. Dala says:

    I think it is not the real reason
    bye

  15. Chris says:

    There is a way to set this permanantly. In windows, go to control panel, click java, go to java tab, click view, and under runtime parameters put -Xmx4G or whatever size you want

    • snehal says:

      And how to do this permanent heap size setting in Unix?

  16. JigSaw says:

    In Windows you should write it as;
    java -Xms64m -Xmx1024m -jar MyProgram.jar

    java -Xms64m -Xmx256m HelloWorld doesn’t work for me, I added -jar part and it works now.

  17. Kellie B says:

    I need to ‘increase java heap size in jvmcfg.ini’ I have no idea what this means but from the information above see I need to ‘Xmx set maximum Java heap size’, what does that mean I actually do? Cut and past that somewhere?

    I have a macbook and am not down with computer lingo so would really love some basic straightforward instruction for dummies.

  18. Janaki says:

    Can let know where to do the heap settings? exact path to do the settings.

    • The heap settings are done as command line arguement for JVM (java command). You need to check where you want to give heap preferences. Check the JVM command (java ..) and pass these parameters accordingly.

  19. Chaitanya says:

    I have a spice qt-61.in it Java apps open too slowly can i do anything for it

  20. swadhikar says:

    Excellent illustration

  21. Napril says:

    Thanks a lot. Is there a way to set heap size permanently on macosx 10.7?

  22. Hamid says:

    Can I put any number like 1600m in Xmx or it has to be only figures like 32, 64, 128, 256, 1024, 2048 and so on. thanks

  23. Pushpak Khatri says:

    Dear sir

    i want to know that any software available that we can see that our variable store in which memory and which address? i want know that

    for ex: if i have addition of two variable so how can i see that which address and which memory store which variable? and at which address?

    so can u plz plz plz plz suggest me some of software that i can see how memory work on my program..

    Thanks

  24. HarperS says:

    You say: “The default heap size if 1 MB and can increase as much as 16 MB.” Are those accurate? If so, why is everybody referring to values that are larger, for example: -Xms64m -Xmx1024m, etc.?

  25. Ankit SAhu says:

    you can set java_opts in environment variable to set globally
    JAVA_OPTS=”-Xms1024m -Xmx2048m”

  26. Deval says:

    Dude…I really liked it

  27. fool says:

    Iam really confused here, maybe it’s stupid question but what does the HelloWorld means?
    I’ve got 32bit with 3gb ram, ive tried adding different parameters in control panel -> Java, also tried adding new environment variable JAVA_OPTS=… Still nothing, i want to try the commandline thing but can’t figure out what HelloWorld is…

    • ishani says:

      HelloWorld is name of the program

  28. tunguyen says:

    hey everyone, my issue “researche and evalution of process virtual machine”, and i know what can i do.

  29. zil says:

    thnx a lot !! ITS works

Leave a Reply

Your email address will not be published. Required fields are marked *