实现自动关机 android实现自动关机的具体方法
人气:2想了解android实现自动关机的具体方法的相关内容吗,在本文为您仔细讲解实现自动关机的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:android,自动,关机,下面大家一起来学习吧。
[java] 复制代码 代码如下:
private void shutdown() {
try {
Process process = Runtime.getRuntime().exec("su");
DataOutputStream out = new DataOutputStream(
process.getOutputStream());
out.writeBytes("reboot -p\n");
out.writeBytes("exit\n");
out.flush();
} catch (IOException e) {
e.printStackTrace();
}
}
private void shutdown() {
try {
Process process = Runtime.getRuntime().exec("su");
DataOutputStream out = new DataOutputStream(
process.getOutputStream());
out.writeBytes("reboot -p\n");
out.writeBytes("exit\n");
out.flush();
} catch (IOException e) {
e.printStackTrace();
}
}
Note:手机必须获取Root权限!!!
加载全部内容