• 实现静默安装APK的方法


    需要满足的条件:

    内置到ROM。即APK包的安装位置是/system/app下。

    下面以 test.apk 为例,演示这个操作。需要准备一台已经获得 Root 权限的手机。

      1、通过 USB 连接手机和电脑。

      2、使用 adb 控制手机。

      1. $ adb push test.apk /sdcard/ // 上传要安装的文件,为安装做准备。
      2. $ adb shell
      3. $ su // 切换到 root 用户。如果没有获得 Root 权限,这一步不会成功。
      4. # mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system // 让分区可写。
      5. # cat /sdcard/test.apk > /system/app/test.apk // 这一步可以用 cp 实现,但一般设备中没有包含该命令。如果使用 mv 会出现错误:failed on '/sdcard/NetWork.apk' - Cross-device link。
      6. # mount -o remount,ro -t yaffs2 /dev/block/mtdblock3 /system // 还原分区属性,只读。
      7. # exit
      8. $ exit

    代码如下:

    package aax.b.activity;
    
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    
    public class ApkInstall {
    
        /**
         * 代码执行后,如果安装成功的话获取到的result值是
         * “        pkg: /data/local/tmp/Calculator.apk  /nSuccess”,
         * 如果是失败的话,则没有结尾的“Success”。
         * @param apkAbsolutePath
         * @return
         */
        public static String quietInstall(String apkAbsolutePath) {
            String[] args = { "pm", "install", "-r", apkAbsolutePath };
            String result = "";
            ProcessBuilder processBuilder = new ProcessBuilder(args);
            Process process = null;
            InputStream errIs = null;
            InputStream inIs = null;
            try {
                ByteArrayOutputStream baos = new ByteArrayOutputStream();
                int read = -1;
                process = processBuilder.start();
                errIs = process.getErrorStream();
                while ((read = errIs.read()) != -1) {
                    baos.write(read);
                }
    //            baos.write('/n');
                inIs = process.getInputStream();
                while ((read = inIs.read()) != -1) {
                    baos.write(read);
                }
                byte[] data = baos.toByteArray();
                result = new String(data);
            } catch (IOException e) {
                e.printStackTrace();
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                try {
                    if (errIs != null) {
                        errIs.close();
                    }
                    if (inIs != null) {
                        inIs.close();
                    }
                } catch (IOException e) {
                    e.printStackTrace();
                }
                if (process != null) {
                    process.destroy();
                }
            }
            return result;
        }
    }
  • 相关阅读:
    一些认识或对不清楚知识的猜想
    Python 绘图与可视化 seaborn
    Python 绘图与可视化 matplotlib 制作Gif动图
    python numPy模块 与numpy里的数据类型、数据类型对象dtype
    python web开发 编写web框架
    Python 绘图与可视化 matplotlib 散点图、numpy模块的random()、条形图bar
    Python 绘图与可视化 matplotlib 填充fill和fill_between
    Python 绘图与可视化 matplotlib(下)
    Python 绘图与可视化 matplotlib(上)
    Python排序 插入排序
  • 原文地址:https://www.cnblogs.com/code4app/p/5145628.html
Copyright © 2020-2023  润新知