android 7.0 root下静默安装

公司产品基于7.0开发,需要实现覆盖升级。之前的产品覆盖升级基于5.1系统,在7.0上不起作用。网上参考了许多博客。最终稀里糊涂的成功了,简单记录。

核心代码只有一句
String command = "pm install -r -i 包名 --user 0 apk路径";

execInstallCommand(new String[]{command})
 public static final String COMMAND_EXIT = "exit\n";
 public static final String COMMAND_LINE_END = "\n";
    
 public static void execInstallCommand(String[] commands) {
        Process process = null;
        BufferedReader successResult = null;
        BufferedReader errorResult = null;

        DataOutputStream os = null;
        try {

            process = Runtime.getRuntime().exec("su");
            os = new DataOutputStream(process.getOutputStream());
            for (String command : commands) {
                if (command == null) {
                    continue;
                }
                // donnot use os.writeBytes(commmand), avoid chinese charset error
                os.write(command.getBytes());
                os.writeBytes(COMMAND_LINE_END);
                os.flush();
            }
            os.writeBytes(COMMAND_EXIT);
            os.flush();        
            process.waitFor();
        } catch (IOException e) {
            Log.e(TAG,e.getMessage());
        } catch (Exception e) {
            Log.e(TAG,e.getMessage());
        } finally {
            try {
                if (os != null) {
                    os.close();
                }
                if (successResult != null) {
                    successResult.close();
                }
                if (errorResult != null) {
                    errorResult.close();
                }
            } catch (IOException e) {
                Log.e(TAG, "execCommand: ", e);
            }

            if (process != null) {
                process.destroy();
            }
        }
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值