Eclipse android sdk bundle can#39;t open Android SDK Manager(Eclipse android sdk bundle 无法打开 Android SDK Manager)
问题描述
我在我的新笔记本(Window 7 64 位)中下载了新的 Android 和 Eclipse 包,然后我打开了以前在 PC 上工作的旧文件.当我打开时,它显示了一些关于版本 API 的错误,我应该修复它在 SDK 管理器中,但是当我尝试打开 SDK 管理器时,它不会运行并在控制台中显示此错误.
I downloaded new Android and Eclipse bundle in my new notebook (Window 7 64 bit) then I open my old files that I used to work in PC.When I open, it shows some error about version API and that I should fix it in SDK Manager, But when I try to open the SDK Manager it won't run and shows this error in console.
[2555-11-20 10:27:27 - Dex Loader] SecurityException: Unable to find field for dex.jar
[2555-11-20 10:36:02 - SDK Manager] [SDK Manager] Failed to convert path to a short DOS path: C:Windowssystem32java.exe
我该如何解决?
推荐答案
在 android_sdk oolslib
中有一个名为 find_java.bat
的批处理文件.它调用 find_java.exe -s
来查找潜在 Java 位置的列表.像这样运行 exe
文件会返回我一直看到的错误:
In android_sdk oolslib
there's a batch-file called find_java.bat
. It calls find_java.exe -s
to find a list of potential Java locations. Running the exe
file like this returns the error I've been seeing:
Failed to convert path to short DOS path: c:windowssystem32java.exe
-s
代表简称.在没有 -s
的情况下运行它会导致 find_java.exe 工作,find_java.bat 工作,导致其他一切工作.所以修复方法是编辑 find_java.bat,并删除 -s
.
-s
stands for short. Running it without the -s
causes find_java.exe to work, causing find_java.bat to work, causing everything else to work. So the fix was to edit find_java.bat, and remove the -s
.
这篇关于Eclipse android sdk bundle 无法打开 Android SDK Manager的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Eclipse android sdk bundle 无法打开 Android SDK Manager
基础教程推荐
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 降序排序:Java Map 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01