Runtime.getRuntime().exec()
方法来运行reboot
命令,,,``java,try {, Process process = Runtime.getRuntime().exec("su");, DataOutputStream os = new DataOutputStream(process.getOutputStream());, os.writeBytes("reboot,");, os.flush();, os.close();, process.waitFor();,} catch (Exception e) {, e.printStackTrace();,},
``,,需要注意的是,这段代码需要设备具有root权限才能执行。