I know how to increase java heap size on command line using flag -Xmx, I need to run my program in jgrasp, how do I increase the heap size for my program in that IDE?

System.out.println("---->"+Runtime.getRuntime().maxMemory());

prints ---->66650112

on adding flag -Xmx256m

the heap size still print the same number

link|improve this question

74% accept rate
feedback

2 Answers

Even when you pass -Xmx256m, it doesn't mean that the JVM is going to allocate that amount right away. -Xmx specifies the max heap. The JVM will wait to allocate more heap up until that limit as it sees fit. If you want to specify the min heap and make sure you reach the limit right away, use -Xms256m.

link|improve this answer
even after setting -Xms256m I am still getting the same amount of max memory printed out 66650112 :S – anon Nov 30 '11 at 21:12
feedback

For increasing the memory of IDE itself, you will have to add those arguments to jgrasp_portable.bat or winconfig_portable.bat

However from your question it seems, you want to add memory to program running inside the IDE. For that, right click on project in jgrasp IDE, go to Compiler settings - this will open a small popup window in which choose compiler tab. There you have subtabs, choose "Flags/Args/Main", here you can add JVM heap sizes. As suggest in previous answer if you need more memory right on startup, it's better to mark -Xms and -Xmx both in appropriate size. Hope this helps

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.