Several Virtual Machines running in same process caused an error
Hey,I have Java SE 6 1.6.0_01 and I get Several virtual machines running in same process caused an error, I have 480MB of ram, Win XP and I have seen that you can change the runtime memory between certain amounts, how do you do this?Thanks
[260 byte] By [
canter07a] at [2007-11-27 5:03:35]

# 1
suppose that you want to run the executable program MyApp.jar.
use this :java -XmsAAAm -XmxBBBm MyApp.jar
Where AAA is the JVM initial heap size
and BBB is the JVM maximum heap size
example:
java -Xms128m -Xmx256m MyApp.jar
Hope That Helps