
| THREAD NAVIGATION: |
|
| Displays all thread messages | Displays thread map | That to which this responds | This thread's lead message | Your most recent Tavern page |
java heap space error 04/21/2005, 08:21:45 |
I don't quite understand your error report. However, some of these data resources are quite large, and it's possible that the java program is running out of memory. Java programs are allocated a set amount of memory when they are started, and they can never exceed that amount. I think by default it's only 64Mb. If you give me the exact set of steps you took to create the error, and I can duplicate it, I can then change how the program works so that it's not using so much memory (probably). Otherwise, you can increase the amount of memory used by the program. For example, using the arguments: java -Xms512M -Xmx512M ... will allow the program to use up to 512Mb instead of just 64. -Mike |
|