手机
当前位置:查字典教程网 >编程开发 >安卓软件开发 >android实现自动关机的具体方法
android实现自动关机的具体方法
摘要:[java]复制代码代码如下:privatevoidshutdown(){try{Processprocess=Runtime.getRun...

[java]

复制代码 代码如下:

private void shutdown() {

try {

Process process = Runtime.getRuntime().exec("su");

DataOutputStream out = new DataOutputStream(

process.getOutputStream());

out.writeBytes("reboot -pn");

out.writeBytes("exitn");

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 -pn");

out.writeBytes("exitn");

out.flush();

} catch (IOException e) {

e.printStackTrace();

}

}

Note:手机必须获取Root权限!!!

【android实现自动关机的具体方法】相关文章:

Android实现语音识别代码

Android HTTP 实现与服务器通信

Android 获取进程内存使用情况方法

android 使用虚拟机安装apk(图文教程)

Android在高jar包版本的工程中修改方法

Android开发之SQLite的使用方法

Android 用SQLite实现事务的方法

android 动态控制状态栏显示和隐藏的方法实例

android滑动解锁震动效果的开启和取消

android帮助文档打开慢的三种解决方法

精品推荐
分类导航