博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
获取 room
阅读量:6693 次
发布时间:2019-06-25

本文共 629 字,大约阅读时间需要 2 分钟。

引用:

转载自:http://dev.10086.cn/cmdn/bbs/thread-37036-1-1.html 
Java代码  
  1. public static boolean runRootCommand(String command) {  
  2. Process process = null;  
  3. DataOutputStream os = null;  
  4. try {  
  5. process = Runtime.getRuntime().exec("su");   
  6. os = new DataOutputStream(process.getOutputStream());  
  7. os.writeBytes(command+"\n");  
  8. os.writeBytes("exit\n");  
  9. os.flush();  
  10. process.waitFor();  
  11. catch (Exception e) {  
  12. Log.d(TAG, "the device is not rooted, error message: " + e.getMessage());  
  13. return false;  
  14. finally {  
  15. try {  
  16. if (os != null) {  
  17. os.close();  
  18. }  
  19. if(process != null) {  
  20. process.destroy();  
  21. }  
  22. catch (Exception e) {  
  23. e.printStackTrace();  
  24. }  
  25. }  
  26. return true;  
  27. }  
 
你可能感兴趣的文章
社交是微信营销
查看>>
2008 R2 证书服务器应用详解
查看>>
hive 动态分区太多问题
查看>>
Windows Server 2008 RemoteApp(二)---部署激活远程桌面授权服务器
查看>>
读取日志文件开发总结
查看>>
IOS --React Native
查看>>
Linux CPU
查看>>
Linux/Centos ntp时间同步,联网情况和无网情况配置
查看>>
初级网络运维工程师比赛题目
查看>>
跨交换机实现vlan实验报告
查看>>
jquery easyui滚动条部分设置介绍
查看>>
cannot find -lxxx问题
查看>>
预防云端开源项目打包 Redis Labs再更改模块
查看>>
超惊人!去年发生的身分外泄安全事件是2017的4倍
查看>>
oracle sqlplus免安装的配置instantclient-basiclite
查看>>
Java开发GUI之选择列表
查看>>
一、分布式商城架构逻辑图
查看>>
机器人是如何完成避障的?机器人避障解决方案解读
查看>>
通过错误堆栈信息和源码分析错误来源
查看>>
C和C++ 读写文件速度问题
查看>>