在终端可以正常运行 adb 命令,在 eclipse 运行 adb 命令就提示错误。Cannot run program "adb": error=2, No such file or directory
我也遇到了这个问题,如果用到了 Runtime.getRuntime().exec(command);的话,记得 command 不能是字符串,要改成:
String[] execCommand = { "/bin/bash", "-c", command };