系统找不到指定的路径

来源:互联网 发布:上海话剧艺术中心淘宝 编辑:程序博客网 时间:2024/05/08 04:59
解决方案如下: 
找到安装根目录下find_java.bat文件 
D:\WorkBook\iflytek\android\Android\sdk\tools\lib\find_java.bat 
编辑文件27行处的代码: 
In line 27 of tools/lib/find_java.bat has a problem: 
find /i "x86" > NUL && set arch_ext=32 || set arch_ext=64 
删除||符号前的空格: 
You must remove space after "arch_ext=32". Correct code is: 
find /i "x86" > NUL && set arch_ext=32|| set arch_ext=64
0 0