Can't open MyEclipse, error "Could not create the Java Virtual Machine", the process of solving the problem is as follows:
1, there is a Eclipse.ini file in D:\MyEclipse\eclipse, the original configuration is as follows:
-showsplash
Com.genuitec.myeclipse.blue.product.ide
--launcher. Xxmaxpermsize
256m
-vmargs
-xms128m
-xmx512m
-duser.language=en
xx:permsize=128m
-xx:maxpermsize=256m
2. Now change the original configuration to the following:
-showsplash
Com.genuitec.myeclipse.blue.product.ide
--launcher. Xxmaxpermsize
256m
-vmargs
-xms128m
-xmx512m
-duser.language=en
-xx:permsize=64m//Modify here
-xx:maxpermsize=128m
After modifying the above code, MyEclipse can start the
Marvel, what do these parameters mean, respectively? Google for a moment:
-vmargs is to indicate that the following parameters are set for the JVM (Java Virtual machine), that is, the following are the parameters of the Java Virtual machine, for the JVM, the memory is divided into heap memory and non-heap memory, note that the heap here is not the concept of the heap inside C/s, because the JVM manages its own memory, The so-called heap of memory is what the JVM can assign to
Http://blog.sina.com.cn/s/blog_471c8e7f0100ew08.html
Could not create the Java Virtual machine (GO)