ANSWER:
You could provide extra options in your command line that launches java.exe
. Some of these options allow you to specify HEAP SIZE:
-Xms<size> set initial Java heap size
-Xmx<size> set maximum Java heap size
For example:
java.exe -Xmx2048m .... myJarFile.jar ...