About 64,900 results
Open links in new tab
  1. java.lang.OutOfMemoryError: Java heap space - Stack Overflow

    If you want to increase your heap space, you can use java -Xms<initial heap size> -Xmx<maximum heap size> on the command line. By default, the values are based on the JRE version and system …

  2. How to deal with "java.lang.OutOfMemoryError: Java heap space" error?

    The user can open unlimited number of files, and the program keeps the opened objects in the memory. After a quick research I found Ergonomics in the 5.0 Java Virtual Machine and others saying on …

  3. how to increase java heap memory permanently? - Stack Overflow

    Jul 20, 2012 · The Java Virtual Machine takes two command line arguments which set the initial and maximum heap sizes: -Xms and -Xmx. You can add a system environment variable named …

  4. Increase heap size in Java - Stack Overflow

    Mar 22, 2016 · -Xms<size> set initial Java heap size -Xmx<size> set maximum Java heap size -Xss<size> set java thread stack size In the following example, minimum heap size is set to 16mb, …

  5. Understanding JVM Memory Allocation and Java Out of Memory: Heap …

    Jun 17, 2016 · The JVM allocates Java heap memory from the OS and then manages the heap for the Java application. When an application creates a new object, the JVM sub-allocates a contiguous …

  6. Error Java heap space - Stack Overflow en español

    Feb 29, 2016 · Error Java heap space Formulada hace 9 años y 9 meses Modificada hace 6 años y 6 meses Vista 50k veces

  7. How is the java memory pool divided? - Stack Overflow

    Heap memory The heap memory is the runtime data area from which the Java VM allocates memory for all class instances and arrays. The heap may be of a fixed or variable size. The garbage collector is …

  8. java - Heap space out of memory - Stack Overflow

    Jul 19, 2011 · When the JVM garbage collector is unable to clear the "waste" memory of your Java / Java EE application over time, OutOfMemoryError: Java heap space will be the outcome. It is …

  9. How do I solve OutOfMemoryError: Java heap space

    May 3, 2013 · How do I solve OutOfMemoryError: Java heap space Asked 12 years, 7 months ago Modified 12 years, 7 months ago Viewed 3k times

  10. Caused by: java.lang.OutOfMemoryError: Java heap space

    Jun 19, 2015 · Caused by: java.lang.OutOfMemoryError: Java heap space Asked 13 years, 4 months ago Modified 10 years, 5 months ago Viewed 66k times