这是问题SDK manager does not find java的后续问题,但现在的问题是SDK/android.bat
找不到SWT文件。
我正在运行Windows 7 x64,我的文件位置如下:
Android SDK (zip version) - C:\android-sdk-windows
SWT.jar (from the Zip) - C:\android-sdk-windows\tools\lib\x86
C:\android-sdk-windows\tools\lib\x86_64
JDK 6 u24 x64 - C:\Program Files\Java\jdk1.6.0_24
我的环境变量如下:
ANDROID_SWT = C:\android-sdk-windows\tools\lib\x86_64
Path = ;C:\Program Files\Java\jdk1.6.0_24\bin
我正在尝试解决以下问题。
执行Android SDK管理器后,黑色命令屏幕会快速闪烁并消失,因此无法启动SDK,因此我无法下载任何平台或附加组件。
请注意,我已经从zip(平台和广告)中获取了这些文件
我已经找到了android.bat
文件的罪魁祸首,但似乎无法弄明白。我为SWT.jar
文件设置了环境变量
到目前为止,我没有以任何方式修改.bat
文件。
以下是我的bat文件,错误位于底部附近。
@echo off
rem Copyright (C) 2007 The Android Open Source Project
rem
rem Licensed under the Apache License, Version 2.0 (the "License");
rem you may not use this file except in compliance with the License.
rem You may obtain a copy of the License at
rem
rem http://www.apache.org/licenses/LICENSE-2.0
rem
rem Unless required by applicable law or agreed to in writing, software
rem distributed under the License is distributed on an "AS IS" BASIS,
rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rem See the License for the specific language governing permissions and
rem limitations under the License.
rem Useful links:
rem Command-line reference:
rem http://technet.microsoft.com/en-us/library/bb490890.aspx
rem don't modify the caller's environment
setlocal
rem Set up prog to be the path of this script, including following symlinks,
rem and set up progdir to be the fully-qualified pathname of its directory.
set prog=%~f0
rem Grab current directory before we change it
set work_dir="%cd%"
rem Change current directory and drive to where the script is, to avoid
rem issues with directories containing whitespaces.
cd /d %~dp0
rem Check we have a valid Java.exe in the path.
set java_exe=
call lib\find_java.bat
if not defined java_exe goto :EOF
set jar_path=lib\sdkmanager.jar
rem Set SWT.Jar path based on current architecture (x86 or x86_64)
for /f %%a in ('%java_exe% -jar lib\archquery.jar') do set swt_path=lib\%%a
if "%1 %2"=="update sdk" goto StartUi
if not "%1"=="" goto EndTempCopy
:StartUi
echo [INFO] Starting Android SDK and AVD Manager
rem We're now going to create a temp dir to hold all the Jar files needed
rem to run the android tool, copy them in the temp dir and finally execute
rem from that path. We do this only when the launcher is run without
rem arguments, to display the SDK Updater UI. This allows the updater to
rem update the tools directory where the updater itself is located.
set tmp_dir=%TEMP%\temp-android-tool
xcopy %swt_path% %tmp_dir%\%swt_path% /I /E /C /G /R /Y /Q > nul
copy /B /D /Y lib\androidprefs.jar %tmp_dir%\lib\ > nul
copy /B /D /Y lib\org.eclipse.* %tmp_dir%\lib\ > nul
copy /B /D /Y lib\sdk* %tmp_dir%\lib\ > nul
copy /B /D /Y lib\common.jar %tmp_dir%\lib\ > nul
copy /B /D /Y lib\commons-compress* %tmp_dir%\lib\ > nul
rem jar_path and swt_path are relative to PWD so we don't need to adjust them, just change dirs.
set tools_dir=%cd%
cd /d %tmp_dir%
:EndTempCopy
rem The global ANDROID_SWT always override the SWT.Jar path
if defined ANDROID_SWT set swt_path=%ANDROID_SWT%
if exist %swt_path% goto SetPath
echo ERROR: SWT folder '%swt_path%' does not exist.
echo Please set ANDROID_SWT to point to the folder containing swt.jar for your platform.
goto :EOF
:SetPath
rem Finally exec the java program and end here.
call %java_exe% -Dcom.android.sdkmanager.toolsdir="%tools_dir%" -Dcom.android.sdkmanager.workdir=%work_dir% -classpath "%jar_path%;%swt_path%\swt.jar" com.android.sdkmanager.Main %*
rem EOF
这是我通过命令提示符
执行bat文件时得到的结果C:\Users\MuniFC Portable11>C:\android-sdk-windows\tools\android.bat
[INFO] Starting Android SDK and AVD Manager
'xcopy' is not recognized as an internal or external command, operable program or batch file.
No command line parameters provided, launching UI.
See 'android --help' for operations from the command line.
java.lang.NullPointerException
at com.android.sdklib.internal.avd.AvdManager.parseAvdInfo(AvdManager.java:1205)
at com.android.sdklib.internal.avd.AvdManager.buildAvdList(AvdManager.java:1184)
at com.android.sdklib.internal.avd.AvdManager.<init>(AvdManager.java:385)
at com.android.sdkuilib.internal.repository.UpdaterData.initSdk(UpdaterData.java:238)
at com.android.sdkuilib.internal.repository.UpdaterData.<init>(UpdaterData.java:114)
at com.android.sdkuilib.internal.repository.UpdaterWindowImpl.<init>(UpdaterWindowImpl.java:86)
at com.android.sdkuilib.repository.UpdaterWindow.<init>(UpdaterWindow.java:42)
at com.android.sdkmanager.Main.showMainWindow(Main.java:302)
at com.android.sdkmanager.Main.doAction(Main.java:281)
at com.android.sdkmanager.Main.run(Main.java:99)
at com.android.sdkmanager.Main.main(Main.java:88)`
如果您对如何解决这个问题有任何想法,那就太棒了!
更新
通过将xcopy
添加到我的路径变量来解决C:\windows\system32
问题,现在剩下的问题是SWT
命令提示符运行 - Android.bat =
C:\Users\MuniFC Portable11>C:\android-sdk-windows\tools\android.bat
[INFO] Starting Android SDK and AVD Manager
No command line parameters provided, launching UI.
See 'android --help' for operations from the command line.
java.lang.NullPointerException
at com.android.sdklib.internal.avd.AvdManager.parseAvdInfo(AvdManager.java:1205)
at com.android.sdklib.internal.avd.AvdManager.buildAvdList(AvdManager.java:1184)
at com.android.sdklib.internal.avd.AvdManager.<init>(AvdManager.java:385)
at com.android.sdkuilib.internal.repository.UpdaterData.initSdk(UpdaterData.java:238)
at com.android.sdkuilib.internal.repository.UpdaterData.<init>(UpdaterData.java:114)
at com.android.sdkuilib.internal.repository.UpdaterWindowImpl.<init>(UpdaterWindowImpl.java:86)
at com.android.sdkuilib.repository.UpdaterWindow.<init>(UpdaterWindow.java:42)
at com.android.sdkmanager.Main.showMainWindow(Main.java:302)
at com.android.sdkmanager.Main.doAction(Main.java:281)
at com.android.sdkmanager.Main.run(Main.java:99)
at com.android.sdkmanager.Main.main(Main.java:88)
C:\Users\MuniFC Portable11>
答案 0 :(得分:6)
将C:\windows\system32
添加到PATH xcopy后,错误消失了,但android.bat仍然存在swt.jar问题。删除ANDROID_SWT
变量对我有效。
答案 1 :(得分:3)
我和你有同样的问题。
最后,我通过重命名java和android sdk文件夹来解决这个问题 没有空炭。
开始时,
java安装在D:\Program Files\Java
和
android sdk安装在D:\Program Files\Android
。
分别更改为D:\Java
和D:\Android
将D:\Java\jdk1.7.0_04\bin
添加到PATH
,
它出现了。
答案 2 :(得分:0)
我曾遇到同样的问题,清除avd文件夹(虚拟设备的配置)对我有用......你应该尝试一下。发现问题是腐败的avd导致android.bat脚本在解析时失败。
答案 3 :(得分:0)
只需从您的Windows个人资料文件夹中删除.android
即可,因为它对我有效。
答案 4 :(得分:-1)
好吧所以我在环境变量中也存在这个问题,ANDROID_SWT = libx86_64,并将android和java同时移动到c:\我也没有在工作修复中修改android.bat。
答案 5 :(得分:-1)
我在Windows 8.1 pro x64上运行Android studio x64。安装了JDK 8 x64。
我遇到了从Android Studio运行AVD的相同问题。以下是修复:
编辑系统环境变量...使用Windows搜索只需键入环境变量,它将打开编辑器。添加一个名为ANDROID_SWT的新系统变量。如果它已经没有必要添加另一个。将“变量值”设置为swt.jar所在的路径。我找到了我的通道:
C:.... \机器人工作室\ SDK \工具\ lib中\ x86_64的\ SWT.JAR
然后我将该路径复制并粘贴到新的(或现有的)ANDROID_SWT系统变量值中。然后我按下确定以保存新的系统变量和它的新值(这是swt.jar的路径),关闭并重新打开Android Studio并启动AVD!
希望这有帮助
答案 6 :(得分:-1)
尝试打开'uiautomatorviewer.bat'
时遇到同样的问题。为了解决这个问题,我添加了ANDROID_SWT
环境变量,并将android_sdk / tools文件夹添加到PATH
。
在我重新开启CMD之前,我没有设法看到变化。
答案 7 :(得分:-1)
这解决了我的问题:
在第27行的find_java.bat
文件夹中打开\sdk\tools\lib
。
find /i "x86" > NUL && set arch_ext=32 || set arch_ext=64
删除arch_ext=32
和||
之间的空白,如arch_ext=32||
,重新打开cmd,所有工具都可以正常使用。