Solution cannot open the Android SDK Manager program

Users who entered this article must already understand what the Android SDK Manager program is that is usually used to install the Android SDK directly from Google servers, which is certainly very complete and not just that, but this one SDK Manager also has an AVD feature that allows users to create an Android emulator on a computer and can be customized to their heart’s content. Of course, it is very suitable for application developers.
There are a lot of problems with the SDK manager, but one of the most annoying is can not open the program and immediately closed. This definitely makes the user nervous as they cannot start the program. And this can be caused by the program itself, which does not recognize Java programs installed on the computer and no longer wants to search, resulting in this program closing without giving any information.
The only way to get around this is to redirect this file in the SDK manager and have the Java files detected manually. Therefore, make sure beforehand that the user has installed the Java Development Kit, as this is required to open the SDK Manager program. But when you installed JDK and the SDK Manager program cannot open, do the following to resolve the issue.
First, enter the folder the user clicks onextract SDK Manager archive.
When you find it, just go to the directory sdk => Tools.
In this section you will find a file called android.bat Please click with the right mouse button and edit with Notepad.
Now is the time to distract a little. Look for such a code
set java_exe=call libfind_java.batif not defined java_exe goto :EOF
Change it like this
set java_exe=C:Program FilesJavajdk1.7.0_07binjava.exe
Don’t save it yet, but in the replacement code above, first change it to the JDK directory location on the computer. Examples like this C: Program Files Java jdk1.7.0_07 bin java.exe.
If it has been changed, press CTRL + S to save. And now try opening the SDK Manager program, it should open.
If you’ve followed the above method but the SDK manager not only opens and stays the same, it means that the problem isn’t because the program doesn’t recognize Java, but rather because the program isn’t using the computer version is compatible or something else. But even if it is not compatible, the SDK manager will certainly display a message if the program cannot be opened. However, if the problem is as described above, the program will not display any notification and will exit immediately.
Hopefully useful and good luck