Reputation: 800
I have installed JDK 1.0.7_25 and Android Studio bundle as instructed. After completing the installation when I tried to launch, I got the following error message:
Failed to load JVM DLL C:\Program Files\Java\jdk1.7.0_25\jre
If you already have a 32-bit JDK installed, define a JAVA_HOME variable in Computer > System Properties > System Settings > Environment Variables.
I have created a JAVA_HOME
variable as prescribed, but still getting the same error message. Now I'm a little frustrated about this. Please help me out. It will be very helpful if you can give me a step-by-step solution as I am new in this area.
Upvotes: 37
Views: 94226
Reputation: 61
Mine was giving me similar. I solved it as follows.
Upvotes: 0
Reputation: 344
I was not able to run on Android Studio version 2022.1.1 Electric Eel even after install jdk 19 separately, or running the studio64.exe, or running with admin priviledge.
My solution: Installing Android Studio version 2021.2.1 Chipmunk works for me.
Upvotes: 0
Reputation: 31
After installing Windows 10, I attempted to install Android Studio and ran into this issue.
Nothing worked for me despite numerous attempts and the setting up of the JAVA_HOME environment variable.
So, I tried deleting jvm.dll from C: Program Files/Android/Android Studio/jbr/bin/server (The location where your jvm.dll is located as per the error message box). and restarting my computer, my issue was resolved.
You can save a copy of the jvm.dll file just in case you decide against using my method.
I might advise you to try it. I sincerely hope that my solution will enable you to solve this issue.
Happy programming!
Upvotes: 0
Reputation: 14825
I faced this issue when updating to Android Studio Electric Eel. It happens when you have two different instances of JDK, one you installed in your system and the other one comes with android studio.
Just delete the folder jbr
from the Android Studio directory, which will fix the issue, and use the default JAVA_HOME
path.
Upvotes: 4
Reputation: 317
I waste my two days for this issue. I resolved this issue by installing Microsoft Visual C++.
In windows Operating System. Install Microsoft Visual C++ X86 or X64.
Upvotes: 9
Reputation: 680
Thanks for the above answers. But It didn't helped me to solve my problem.
Solution : Delete the jre folder. Path for jre : C:\Program Files\Android\Android Studio\jre
Upvotes: 0
Reputation: 1272
This issue happen due to two reasons
Go to ( C: \Program Files ) and search for java folder if it isn't exist then go to this link and download latest JDK for window, mac or Linux and install it on default location.
https://www.oracle.com/java/technologies/downloads/#jdk19-windows
If java folder already exists and it has jdk in it then search for environment variable in PC search-bar and open it. Add JDK and bin path like this:
Upvotes: 2
Reputation: 4440
I had to do nothing except rebooting my pc. After reboot it worked.
Upvotes: 0
Reputation: 1255
If you are running a 64-bit version of Windows, you should run the 64-bit executable, studio64.exe.
Try to run studio64.exe with Administrator privileges. (C:\Program Files\Android\Android Studio\bin)
Reference: Android Studio does not start
Upvotes: 13
Reputation: 1246
I added JAVA_HOME = C:\Program Files\Java\jdk-10.0.1
.
And Open Android Studio as run as administrator.
Worked for me.
Upvotes: 3
Reputation: 321
It works like this:
JAVA_HOME: C:\Program Files\Java\jdk1.7.0_21
and
PATH: C:\Program Files\Java\jdk1.7.0_21\bin
Upvotes: 32
Reputation: 799
As well as JAVA_HOME
which should be set to the jdk
directory e.g. C:\Program Files\Java\jdk1.7.0_21
you also have to add a path to the jdk
bin directory e.g. C:\Program Files\Java\jdk1.7.0_21\bin
.
As you already know how to set the JAVA_HOME
variable adding the extra directory to the path variable is just the same but you have to edit an existing variable and add the path separated by a semicolon e.g. add ;C:\Program Files\Java\jdk1.7.0_21\bin
to the end of the path. And then restart your PC, to start the Android Studio.
More details at: Getting Started With Android Studio
Upvotes: 36
Reputation: 342
Restart was not necessary. It worked.
JAVA_HOME: C:\Program Files\Java\jdk1.8.0_201\jre\bin\server\jvm.dll
and
PATH: C:\Program Files\Java\jdk1.8.0_201\bin
Upvotes: 1
Reputation: 3313
I hit this with a fresh install of Android Studio on Windows 10. It ran fine after installing, but gave this error after I rebooted the computer. Turns out I need to run Android Studio with Administrator privileges, which doesn't happen by default.
Right-click --> Run as Administrator
If this is not viable, there is probably a different approach which would involve installing the JDK in a location that runable without elevated permissions (see other answers for ideas).
Upvotes: 17
Reputation: 899
It is very late for my answer but still to the people who reference this in the future, I had the same issue. Mine was x64 bit OS and I was trying to open studio.exe which is x32 bit. I opened studio64.exe and it worked.
Upvotes: 64
Reputation: 11
It is very simple![step-1][1]..Just go to Advanced settings>environment variables.In System variables,add new variable(JAVA_HOME) by clicking new.Fill the variable value by the location of the jdk-"C:\Program Files\Java\jdk1.7.0_75" in program variable .
In next step you have to edit the existing System Variables by scrolling down to find "path: There are already so many path values defined in variable values.So by using ";" you can add another value as ";C:\Program Files\Java\jdk1.7.0_75\bin".
Check it out.it is ready.All the best.
Upvotes: 1
Reputation: 149
For me it helped to make sure that I ended my environment variables with a backslash
JAVA_HOME = C:\path to jdk\
PATH = C:\other existing paths\;C:\path to jdk\bin\
Upvotes: 3
Reputation: 2494
Just to be sure,ensure that your java version is enabled in the Java controll Panel,sometimes it does conflict and the android studio fails to pick since the one Enabled is not on the Classpath.Make sure that the one Enabled is the one that is set in the Class Path/Environmenal Variables.
Happy Coding!
Upvotes: 0