-
Junior Member
how can i increase heap memory?
how can i increase heap memory?
-
Contributing Member
Re: how can i increase heap memory?
Hi,
To increase the heap memory, use the following command when you execute your application:
java -Xms32m -Xmx256m MyClassName
In the above command,
-Xms32m means that the minimum memory should be 32MB
-Xmx256m tells the JVM that the maximum heap space should be 256MB.
Hope this helps.
Regards,
Sahil.
--Win as if you were used to it,
Loose like you enjoyed it for a change!!! 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules