我正在尝试从 Windows cmd 启动支持 SD 卡的 Android 模拟器。
我努力了:
emulator -sdcard C:/Documents and Settings/User/sdcard.img -avd avd_tablet
它不工作:无效的命令行参数:和
emulator -sdcard C:/Documents^ and^ Settings/User/sdcard.img -avd avd_tablet
它不适用于“^”:无效的命令行参数:和^
emulator -sdcard "C:/Documents and Settings/User/sdcard.img" -avd avd_tablet
它不适用于引号:无效的命令行参数:和
emulator -sdcard C:/Documents\ and\ Settings/User/sdcard.img -avd avd_tablet
它不适用于反斜杠转义:无效的命令行参数:和
emulator -sdcard C:/"Documents and Settings"/User/sdcard.img -avd avd_tablet
它不适用于部分反斜杠转义:无效的命令行参数:和
有什么建议么?