java -Xmx1024m filename
what does -Xmx mean?
Edit: removed space between Xmx and 1024m
|
see here: Java Tool Doc, it says,
So, in simple words, you are saying Java to use Maximum of 1024 MB from available memory. Notice there is NO SPACE between -Xmx and 1024m |
|||
|
|
|
|||
|
|
|
The -Xmx option changes the maximum Heap Space for the VM. java -Xmx1024m means that the VM can allocate a maximum of 1024 MB. In layman terms this means that the application can use a maximum of 1024MB of memory. |
|||||
|
java -Xmx1024m– Nishant Mar 21 '11 at 6:34-Xare non standard across platforms and may be removed in the future. There is now a-mxwhich is standard, shorter and does the same thing however is poorly documented. :( Similarly there is-mxinstead of-Xms– Peter Lawrey Mar 21 '11 at 7:40