我們在開發(fā)智能硬件時,可能會遇到軟件方面的數(shù)據(jù)錯誤或者硬件方面的問題排监,我們會在app中預留遠程重啟智能系統(tǒng)的接口狰右,當我們后臺推送給app端遠程重啟命令時,app端需要立即調用系統(tǒng)重啟方法舆床。
/**
* 執(zhí)行命令
*
* @param command 1棋蚌、獲取root權限 "chmod 777 "+getPackageCodePath()
* 2、關機 reboot -p
* 3挨队、重啟 reboot
*/
public static boolean execCmd(String command) {
Process process = null;
DataOutputStream os = null;
try {
process = Runtime.getRuntime().exec("su");
os = new DataOutputStream(process.getOutputStream());
os.writeBytes(command + "\n");
os.writeBytes("exit\n");
os.flush();
process.waitFor();
} catch (Exception e) {
return false;
} finally {
try {
if (os != null) {
os.close();
}
if (process != null) {
process.destroy();
}
} catch (Exception e) {
e.printStackTrace();
}
}
return true;
}