我想重新启动设备。我可以用 root.using 下面的代码来做。
public static void rebootDevice()
{
try
{
Process process = Runtime.getRuntime().exec("su");
DataOutputStream os = new DataOutputStream(process.getOutputStream());
os.writeBytes("reboot \n");
}
catch (Throwable t) {
t.printStackTrace();
}
}
但老板告诉我试试不使用su。怎么做有什么帮助?