码迷,mamicode.com
首页 > 移动开发 > 详细

分享下android下,静默安装的方法

时间:2014-12-04 16:01:38      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:android   style   http   io   ar   color   os   sp   for   


代码如下:

  1. /** 

  2.  * 静默安装 

  3.  * @param file 

  4.  * @return  

  5.  */  

  6. public boolean slientInstall(File file) {  

  7.     boolean result = false;  

  8.     Process process = null;  

  9.     OutputStream out = null;  

  10.     try {  

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

  12.         out = process.getOutputStream();  

  13.         DataOutputStream dataOutputStream = new DataOutputStream(out);  

  14.         dataOutputStream.writeBytes("chmod 777 " + file.getPath() + "\n");  

  15.         dataOutputStream.writeBytes("LD_LIBRARY_PATH=/vendor/lib:/system/lib pm install -r " +  

  16.                 file.getPath());  

  17.         // 提交命令  

  18.         dataOutputStream.flush();  

  19.         // 关闭流操作  

  20.         dataOutputStream.close();  

  21.         out.close();  

  22.         int value = process.waitFor();  

  23.           

  24.         // 代表成功  

  25.         if (value == 0) {  

  26.             result = true;  

  27.         } else if (value == 1) { // 失败  

  28.             result = false;  

  29.         } else { // 未知情况  

  30.             result = false;  

  31.         }  

  32.     } catch (IOException e) {  

  33.         e.printStackTrace();  

  34.     } catch (InterruptedException e) {  

  35.         e.printStackTrace();  

  36.     }  

  37.       

  38.     return result;  

  39. }  


注意代码中pm install -r 前面的LD_LIBRARY_PATH=/vendor/lib:/system/lib,在4.0版本以上必须加上,不然会无法安装。


分享下android下,静默安装的方法

标签:android   style   http   io   ar   color   os   sp   for   

原文地址:http://my.oschina.net/u/1433686/blog/352291

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!