在某些Android设备,在亚洲开发银行的外壳,我只能跑echo
, cd
, ls
。 当我运行:
tar -cvf //mnt/sdcard/BackUp1669/apk/test.tar /mnt/sdcard/test.apk
或命令cp
,则返回:
sh: tar: not found
为什么我不能运行这些命令? 有些设备支持这些命令。 我的最终目标是将文件从/数据/数据文件夹复制到SD卡复制。 我得到了苏 ,我得到了下面的代码:
int timeout = 1000;
String command = "tar -cvf /" + Environment.getExternalStorageDirectory() + "/cp/"
+ packageName + ".tar" + " " + path;
DataOutputStream os = new DataOutputStream(process.getOutputStream());
BufferedReader is = new BufferedReader(new InputStreamReader(new DataInputStream(
process.getInputStream())), 64);
String inLine;
try {
StringBuilder sbCommand = new StringBuilder();
sbCommand.append(command).append(" ");
sbCommand.append("\n");
os.writeBytes(command.toString());
if (is != null) {
for (int i = 0; i < timeout; i++) {
if (is.ready())
break;
try {
Thread.sleep(5);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
if (is.ready()) {
inLine = is.readLine();
} else {
}
}
} catch (IOException e) {
e.printStackTrace();
}
它总是在停止is.ready()
当我把它改为process.waitfor()
也停止了。 为什么?