当前位置: 代码迷 >> Android >> android应用程序中应用root权限
  详细解决方案

android应用程序中应用root权限

热度:103   发布时间:2016-05-01 20:05:51.0
android应用程序中使用root权限

要在android应用程序中使用root权限,那么运行程序的设备必须具有root权限。

? ? http://www.eoeandroid.com/code/2012/0320/973.html

?

写道
public static boolean runRootCommand(String command) {
String TAG = "";
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) {
Log.d(TAG,
"the device is not rooted, error message: "
+ e.getMessage());
return false;
} finally {
try {
if (os != null) {
os.close();
}
if (process != null) {
process.destroy();
}
} catch (Exception e) {
e.printStackTrace();
}
}
return true;
}
  相关解决方案