| Author |
Memory heap error
|
Jesus Angeles
Ranch Hand
Joined: Feb 26, 2005
Posts: 2038
|
|
Hi,
I am getting this below.
The program needs lots of memory.
Is it possible to increase the heap memory for my program?
|
 |
Ryan Beckett
Ranch Hand
Joined: Feb 22, 2009
Posts: 192
|
|
Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
This can have two reasons:
* Your Java application has a memory leak. There are tools like YourKit Java Profiler that help you to identify such leaks.
* Your Java application really needs a lot of memory (more than 128 MB by default!). In this case the Java heap size can be increased using the following runtime parameters:
java -Xms<initial heap size> -Xmx<maximum heap size>
Defaults are:
java -Xms32m -Xmx128m
Increase Java Heap Size
|
 |
Jesus Angeles
Ranch Hand
Joined: Feb 26, 2005
Posts: 2038
|
|
|
Thank you Ryan.
|
 |
 |
|
|
subject: Memory heap error
|
|
|