Android SDK Manager拒绝打开

时间:2014-02-20 17:04:48

标签: android sdk

cmd闪烁然后消失。我已经将以下内容编辑到了android.bat

set java_exe="C:\Program Files (x86)\Java\jre7\bin\java.exe"
set javaw_exe="C:\Program Files (x86)\Java\jdk1.7.0_51\bin\java.exe"
set jar_path=lib\sdkmanager.jar;lib\swtmenubar.jar
rem Set SWT.Jar path based on current architecture (x86 or x86_64)
set swt_path=lib\x86_64

我尝试过以管理员身份运行。 我已经设置了JAVA_HOME路径

目前使用SDK版本1.7.0_51 和jre7

我在cmd中运行我的Android.bat并获得此输出。

C:\>C:\adt-bundle-windows-x86_64-20130522\sdk\tools\android.bat
Usage: java [-options] class [args...]
           (to execute a class)
   or  java [-options] -jar jarfile [args...]
           (to execute a jar file)
where options include:
-d32          use a 32-bit data model if available
-d64          use a 64-bit data model if available
-client       to select the "client" VM
-server       to select the "server" VM
-hotspot      is a synonym for the "client" VM  [deprecated]
              The default VM is client.

-cp <class search path of directories and zip/jar files>
-classpath <class search path of directories and zip/jar files>
              A ; separated list of directories, JAR archives,
              and ZIP archives to search for class files.
-D<name>=<value>
              set a system property
-verbose:[class|gc|jni]
              enable verbose output
-version      print product version and exit
-version:<value>
              require the specified version to run
-showversion  print product version and continue
-jre-restrict-search | -no-jre-restrict-search
              include/exclude user private JREs in the version search
-? -help      print this help message
-X            print help on non-standard options
-ea[:<packagename>...|:<classname>]
-enableassertions[:<packagename>...|:<classname>]
              enable assertions with specified granularity
-da[:<packagename>...|:<classname>]
-disableassertions[:<packagename>...|:<classname>]
              disable assertions with specified granularity
-esa | -enablesystemassertions
              enable system assertions
-dsa | -disablesystemassertions
              disable system assertions
-agentlib:<libname>[=<options>]
              load native agent library <libname>, e.g. -agentlib:hprof
              see also, -agentlib:jdwp=help and -agentlib:hprof=help
-agentpath:<pathname>[=<options>]
              load native agent library by full pathname
-javaagent:<jarpath>[=<options>]
              load Java programming language agent, see java.lang.instrument

-splash:<imagepath>
              show splash screen with specified image

有关m,请参阅http://www.oracle.com/technetwork/java/javase/documentation/index.html 矿石细节。

2 个答案:

答案 0 :(得分:0)

我遇到了同样的问题,我发现批处理文件开头的“set”命令都没有正常工作。

 prog设置为~f0。
 work_dir是空的  cd / d~dp0导致错误“文件名,目录名或卷标语法不正确。”

Android.bat需要启用命令扩展才能正常运行。

在原始android.bat中编辑此行 从...
setlocal
到...
setlocal enableExtensions

这应该正确设置所有环境变量,以便它们不需要硬编码。

您还可以在注册表中启用命令扩展。进行此更改后重新启动。 HKEY_CURRENT_USER \ Software \ Microsoft \ Command Processor \ EnableExtensions = 1

答案 1 :(得分:0)

现在已经太晚了,但是对于仍然无法解决这个问题的人来说可能会有所帮助,请按照这些步骤进行操作,经过很长一段时间后,这对我有所帮助,所有方法都无效,无需使用JAVA_HOME系统变量或编辑android。蝙蝠

  1. 在Android SDK中下载Android Studio,Java JDK 64位和Java JRE x86

  2. 首先安装Java JRE,然后安装Java JDK 64位,最后安装Android Studio。

  3. 现在你首先启动Android Studio(64位版本)它需要JAVA_HOME设置来运行JVM,只需复制jdk.xxx(版本)文件夹(我的电脑:jdk1.8.0_25来自“C:\” Program Files \ Java \“)文件夹到Android Studio文件夹,并将该文件夹(在Android Studio中)重命名为”jre“(jdk1.8.0_25 - &gt; jre)。

  4. 现在我可以从任何地方打开Android SDK Manager,如果你想使用eclipse(现在不是官方版),只需复制java jre.xxx(version)x86文件夹(从之前安装的地方)到Eclipse并重命名为“jre”。应对后,选择要使用的Eclipse中的Android SDK路径,它适用于Android Studio和Eclipse。

  5. 如果它仍然拒绝你,请注意你的防病毒软件(删除防病毒并在确定它不会导致问题后安装)!

  6. 希望对你有所帮助。