|
|
Re: Out of Memory error - Programming for 3D in Java
|
Posted: Sep 16, 2002 6:24 AM
|
|
> Seems too obvious to say without sounding sarcastic, > but maybe you should install more memory. Or > partition your program so that it doesn't use so much > memory at once (that is, do the memory intensive > tasks serially). Maybe you have leaks, also -- make > sure you don't leave dangling references in > collections or elsewhere. By the way, the IntelliJ > Java editor shows how much memory it has allocated > and how much it is using on the status bar -- I don't > know how they did this trick or whether it involved > JNI, but it does indicate that it can be done...
********************************************
Thank you very much for taking interest in our problem. Well we will certainly follow your suggestions. we also plan to use "threads" so that some processor intensive work can be done in parts. will this help? Can calling "System.gc()" help in this regard or not? Also we'd like to know where we can get the IntelliJ java editor from?
|
|