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

Android下实现静默安装指定APK

时间:2014-07-16 14:08:27      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:android   解决方案   

什么是静默安装?既是可以在不提示用户的情况下,进行APK的安装。

有的时候,根据业务需求,需要实现静默安装APK,但是Android提供的安装接口是需要提示用户的前提下安装。

以下提供一个静默安装的解决方案(通过执行命令行的方式实现,需ROOT权限):

new Thread() {
    public void run() {
    Process process = null;
    OutputStream out = null;
    InputStream in = null;
    try {
    // 请求root
    process = Runtime.getRuntime().exec("su");
    out = process.getOutputStream();
    // 调用pm命令安装,理论上是可以做任何事情
    out.write(("pm install -r " + currentTempFilePath + "\n").getBytes());
    in = process.getInputStream();
    int len = 0;
    byte[] bs = new byte[1024];
    while (-1 != (len = in.read(bs))) {
    String state = new String(bs, 0, len);
    if (state.equals("Success\n")) {
       //安装成功后的操作
         }
       }
    } catch (IOException e) {
        e.printStackTrace();
    } catch (Exception e) {
        e.printStackTrace();
    } finally {
        try {
            if (out != null) {
                out.flush();
                out.close();
            }
            if (in != null) {
                in.close();
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
  }
}.start();


Android下实现静默安装指定APK,布布扣,bubuko.com

Android下实现静默安装指定APK

标签:android   解决方案   

原文地址:http://blog.csdn.net/u013716863/article/details/37873307

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