Android-Studio : Error: Could not create the Java

2019-01-09 01:01发布

问题:

I have just installed Android - studio today. First I have to install jdk7 for this IDE.

After that only I was able to launch IDE.

Now When I am trying to create new project, just getting error as shown in below image.

Can anybody please help me.

What is missing from my side?

回答1:

In my case, I changed below file to modify vm heap option.

C:\Program Files\Android\android-studio\bin\studio.exe.vmoptions

I increased -Xms128m to -Xms512m and restarted Android Studio.

After that, I could go to next step.



回答2:

I found a solution to this problem on an old vs-android issue.

You should create a new environment variable named _JAVA_OPTIONS, set it to
-Xms256m -Xmx1024m and it should work.



回答3:

I guess you have the same problem as me. I use Windows 7 32bit and therefore my Java SDK and runtime are also 32 bit. Gradle runs in its own Java VM and Android Studio starts this VM with a heap size parameter (-Xmx1024m) of 1 GB. This is too much for my 32-bit environment and creating the JVM fails.

If I manually start Gradle with -Xmx512m as JVM option Gradle starts without problems, but so far I have not found out how to tell Android Studio to start the JVM differently while it creates a new Android project.

So currently I'm also still stuck.

thomas



回答4:

1.In the Studio, navigate to File-> Settings->Compiler

   In the VM Options text box, paste this line
   -Xmx512m -XX:MaxPermSize=512m
  1. Delete the existing AVD.

  2. Then File->Invalidate Caches/Restart .

  3. After restarting the studio, create a new AVD. Should work fine !



回答5:

I found the solution in vs-android Issue 15: -dex: could not create the Java virtual machine

Follow this steps:

  1. Run regedit
  2. Go to HKEY_CURRENT_USER
  3. Select Environment
  4. Add a new String Value and enter _JAVA_OPTIONS for Value name
  5. Enter -Xms256m -Xmx512m for Value data
  6. Reboot computer


回答6:

In my case, I also change below file.

C:\Program Files\Android\android-studio\bin\studio.exe.vmoptions

but I decreased -XX:MaxPermSize=350m to -XX:MaxPermSize=300m and restarted Android Studio.



回答7:

I was having the same problem. I downloaded and installed JDK 6u43 and set my JAVA_HOME and JDK_HOME environment variables to C:\Program Files (x86)\Java\jdk1.6.0_43. This let me create a project.

Doesn't help if you want to use jdk7, though.



回答8:

I was facing this same issue, and I solved it by the following steps:-

  1. Close android studio.
  2. Go to your project folder.
  3. Delete .gradle folder and gradle.properties file.
  4. Now start android studio project and wait while gradle build. It will not show the error.