我正在创建一个禁用应用程序(包)的Android应用程序(Xposed模块)。当我从adb shell
运行命令时,它运行得很好。但是根据我的申请,我无法弄清楚它为什么不起作用。
以下是代码:
try {
Process su = Runtime.getRuntime().exec("su");
DataOutputStream outputStream = new DataOutputStream(su.getOutputStream());
outputStream.writeBytes("pm disable com.bt.bms");
outputStream.writeBytes("exit\n");
outputStream.flush();
}
catch (IOException e) {
throw new RuntimeException(e);
}
有什么办法可以看到执行代码的结果吗?
答案 0 :(得分:1)
这对我有用:
try {
Process proc = Runtime.getRuntime().exec(new String[] { "su", "-c", "pm disable com.bt.bms" });
proc.waitFor();
} catch (Exception ex) {
XposedBridge.log("Could not reboot");
}
答案 1 :(得分:0)
您忘记在第一个命令的末尾添加\n
。
试试这个:
try {
Process su = Runtime.getRuntime().exec("su");
DataOutputStream outputStream = new DataOutputStream(su.getOutputStream());
outputStream.writeBytes("pm disable com.bt.bms\n");
outputStream.flush();
outputStream.writeBytes("exit\n");
outputStream.flush();
} catch (IOException e) {
throw new RuntimeException(e);
}