通过代码重启android手机?不工作。 (root用户)

时间:2011-05-16 20:32:01

标签: java android root reboot

  

可能重复:
  Runtime.exec() : Reboot in Android ?

嘿我试图在我的应用中为root用户实现重启,但下面的代码不起作用。 SU提示会弹出,但当我允许操作没有任何反应时,它将不会重启。有什么想法吗?

 try {
        Runtime.getRuntime().exec("su");
        Runtime.getRuntime().exec("reboot");
    } catch (IOException e) {
}

这也不起作用,SU弹出但没有重启。

Runtime.getRuntime().exec(new String[]{"/system/bin/su","-c","reboot"});

0 个答案:

没有答案