Fix "could not create the java virtual machine" issue

If Java causes some trouble, you may get the error message "Could not create the Java Virtual Machine." This tutorial will help you solve the issue.

java-virtual-machine-error_tha_us_1376004258_w_450.jpg


When that happens, the easiest solution that has been tested on Windows XP, Windows 7 and Windows 8 is:


  • ■ Open the Control Panel
    ■ Go to System
    ■ Go to Advanced Systems Properties
    ■ Then Environment Variables
    ■ In System Variables, click Add
    ■ New Variable Name: _JAVA_OPTIONS
    ■ New Variable Value: -Xmx512M
    ■ Click OK

That's it, your Java program should now be able to execute properly.
For those interested, Java -Xmx/s is the configuration parameter that control the amount of memory Java uses.

  • ■ Xmx sets the maximum heap memory size
    ■ Xms sets the minimum heap memory size
See http://www.jafaloo.com/2011/10/30/java-xmx-memory-settings/ for more details on Java Heap memory size and parameters.
 
Status
Not open for further replies.
Status
Not open for further replies.