用intellij idea开发工具建立android项目时候报错处理

android控制台输出信息:

  1. WARNING: Java not found in your path.   
  2. Checking if Java is installed in C:\Program Files\Java.  
  3.   
  4. ERROR: No suitable Java found. In order to properly use the Android Developer  
  5. Tools, you need a suitable version of Java JDK installed on your system.  
  6. We recommend that you install the JDK version of JavaSE , available here:  
  7.   http://www.oracle.com/technetwork/java/javase/downloads  
  8. You can find the complete Android SDK requirements here:  
  9.   http://developer.android.com/sdk/requirements.html  
这个时候,我cmd命令看了我的java安装的环境,java -version 和javac没有问题,

出现这个问题的原因是因为你安装的JDK版本不对,可能你安装的是J2EE 的JDK

上面控制台推荐的下载网站中下载JavaSE的JDK,安装好后重新设置一下JAVA环境变量就可以正常使用的。按照这个思路 ,问题解决了。

你可能感兴趣的:(用intellij)