[问]执行根脚本后手机重启

时间:2012-03-16 18:48:15

标签: android root kill reboot

我遇到了脚本问题,非常奇怪,我在终端下面写了下面的脚本,工作正常,但是当我尝试在我的应用程序中运行它时,就像开始运行然后手机重启一样,有任何想法吗??

String command = "pidof -s " + intent.getComponent().getPackageName() + " | kill -9 .";

Process su = Runtime.getRuntime().exec("su");
DataOutputStream os = new DataOutputStream(su.getOutputStream());

os.writeBytes(command + "\n");
os.flush();

0 个答案:

没有答案