安卓AVD模拟器

发布于 2024-12-01 05:51:40 字数 459 浏览 1 评论 0原文

可能的重复:
错误 Android SDK:无效的命令行参数文件

我已传输我的文件到新计算机,但现在当我尝试通过 Eclipse 运行 AVD 时,出现此错误:

[2011-08-23 22:20:58 - Emulator] invalid command-line参数:文件。 [2011-08-23 22:20:58 - 模拟器] 提示:使用“@foo”启动名为“foo”的虚拟设备。 [2011-08-23 22:20:58 - 模拟器] 请使用 -help 获取更多信息

是什么原因造成的?

Possible Duplicate:
Error Android SDK: invalid command-line parameter files

I transfered my files to a new computer but now when I try to run the AVD through eclipse I get this error:

[2011-08-23 22:20:58 - Emulator] invalid command-line parameter: Files.
[2011-08-23 22:20:58 - Emulator] Hint: use '@foo' to launch a virtual device named 'foo'.
[2011-08-23 22:20:58 - Emulator] please use -help for more information

What is causing it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

情场扛把子 2024-12-08 05:51:40

sdk路径不能包含空格。可能你的sdk位于c:/program files/...等路径中,所以program files目录中有一个空格。将其放在路径中没有空格的目录中

sdk path can't contain spaces.May be your sdk is in some path like c:/program files/...So a space in program files directory.Place it in a directory where there is no spaces in the path

中性美 2024-12-08 05:51:40

尝试使用以下方法更新它:

android update avd -n foo

其中 foo 是您的 AVD 名称。

Try updating it using:

android update avd -n foo

Where foo is your AVD name.

木有鱼丸 2024-12-08 05:51:40

您可能将文件复制到带有空格的路径(例如,C:/Program Files (x86)/Android/)
尝试将其移动到 C:/Android(路径中没有空格)。

如果您想维护带有空格的路径,请执行以下操作:

在 Eclipse、Windows -> 中首选项-> Android 选项卡 -> SDK位置

改变

C:\Program Files (x86)\Android\android-sdk

C:\PROGRA~2\Android\android-sdk

C:\Program Files\Android\android-sdk

C:\PROGRA~1\Android\android-sdk

You probably copied the files to a path with spaces (E.g., C:/Program Files (x86)/Android/)
Try moving it to C:/Android (No spaces in the path).

If you want to maintain a path with spaces do something like this:

In Eclipse, Windows -> Preferences -> Android Tab -> SDK Location

Change

C:\Program Files (x86)\Android\android-sdk

to

C:\PROGRA~2\Android\android-sdk

or

C:\Program Files\Android\android-sdk

to

C:\PROGRA~1\Android\android-sdk

霊感 2024-12-08 05:51:40

在命令行中:

mklink /J c:\Android "C:\Program Files (x86)\Android\android-sdk"

接下来,您需要将 Android SDK 的路径更改为指向 C:\Android。

At the command line:

mklink /J c:\Android "C:\Program Files (x86)\Android\android-sdk"

Next, you want to change the path to your Android SDK to point to C:\Android.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文