Adt Bundle Can't Find Java
Solution 1:
You will have to put Java in your classpath, so Eclipse knows where it can find Java. See here: http://docs.oracle.com/javase/tutorial/essential/environment/paths.html for info on how to do this.
Solution 2:
install 32 bit version of jdk from oracle website
Solution 3:
put the path of your java bin directory under Environment variables. System->Advanced System Settings->Environment Variables->path
Open command prompt. use java and javac commands to know if you have successfully installed java and compiler.
if it doesn't help, this question has a lot of helpful answers Eclipse - no Java (JRE) / (JDK) ... no virtual machine
Solution 4:
From what you said: "'java' is not recognized as an internal or external command, operable program or batch file"
Your java may not have been installed correctly, or, it was installed, but you did not set path to it correctly. It is not a problem with ADT, any of your programs that need Java will not be able to find it.
Post a Comment for "Adt Bundle Can't Find Java"