Android apk多渠道验证工具 - 不提供工具,只提供源码

原理基于上篇的多渠道打包工具,我们使用apktool解压需要验证的apk文件后,去读AndroidManifest.xml,当读到渠道号哪一行的时候输出即可。

源码如下:

Main.java

package com.Market5577.channelVerifyTool;

public class Main {
    public static void main(String[] args) {
        System.out
                .println("=====**====Code by H3c=====**======");
        System.out.println("==**==渠道验证工具==**==");

        if (args.length != 1) {
            System.out
                    .println("==ERROR==usage:java -jar channelV.jar apkDirectory======");
            System.out
                    .println("==INFO==Example: java -jar channelV.jar /apps======");
            return;
        }

        String apk = args[0];

        SplitApk sp = new SplitApk(apk);
        sp.mySplit();
    }
}

SplitApk.java

package com.Market5577.channelVerifyTool;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.HashMap;

public class SplitApk {
    HashMap<String, String> qudao = new HashMap<String, String>();// 渠道号,渠道名
    String curPath;// 当前文件夹路径
    String apkDirectory;

    public SplitApk(String directory) {
        this.curPath = new File("").getAbsolutePath();
        this.apkDirectory = directory;
    }

    public void mySplit() {
        File dire = new File(apkDirectory);
        if (!dire.exists()) {
            System.out.println("没有该文件");
            return;
        }

        if (dire.isDirectory()) {
            File[] sonFile = dire.listFiles();
            for (File file : sonFile) {
                modifyXudao(file.getAbsolutePath());
            }
        } else {
            modifyXudao(apkDirectory);
        }
        
        System.out.println("====Over====");
    }

    /**
     * apktool解压apk,替换渠道值
     * 
     * @throws Exception
     */
    private void modifyXudao(String apkName) {
        // 解压 /C 执行字符串指定的命令然后终断
        String cmdUnpack = "cmd.exe /C java -jar apktool.jar d -f -s "
                + apkName;
        runCmd(cmdUnpack);

        String[] apkFilePath = apkName.split("\\\\");
        String shortApkName = apkFilePath[apkFilePath.length - 1];
        String dir = shortApkName.split(".apk")[0];
        File packDir = new File(dir);// 获得解压的apk目录

        String f_mani = packDir.getAbsolutePath() + "\\AndroidManifest.xml";
        File manifest = new File(f_mani);

        for (int i = 0; i < 10; i++) {
            if (manifest.exists()) {
                break;
            }
            try {
                Thread.sleep(1000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }

        if (!manifest.exists()) {
            System.out.println("====验证失败======");
        }

        /*
         * 遍历map,复制manifese进来,修改后打包,签名,存储在对应文件夹中
         */
        BufferedReader br = null;
        FileReader fr = null;
        String keyLine = null;
        try {
            fr = new FileReader(manifest);
            br = new BufferedReader(fr);
            String line = null;
            while ((line = br.readLine()) != null) {
                if (line.contains("\"BaiduMobAd_CHANNEL\"")) { // 关键代码===我这里是用的百度统计工具
                    keyLine = line;
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
            System.out.println("====验证失败======");
        } finally {
            try {
                if (fr != null) {
                    fr.close();
                }
                if (br != null) {
                    br.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }

        if (keyLine != null) {
            String tmps[] = keyLine.split("\\\"");
            System.out.println("读到的渠道是:" + tmps[3]);
        } else {
            System.out.println("====验证失败,请关闭======");
        }

        // 删除中途文件
        String cmdKey = String.format("cmd.exe /C rd /s/q %s", dir);
        runCmd(cmdKey);
    }

    /**
     * 执行指令
     * 
     * @param cmd
     */
    public void runCmd(String cmd) {
        Runtime rt = Runtime.getRuntime();
        BufferedReader br = null;
        InputStreamReader isr = null;
        try {
            Process p = rt.exec(cmd);
            // p.waitFor();
            isr = new InputStreamReader(p.getInputStream());
            br = new BufferedReader(isr);
            String msg = null;
            while ((msg = br.readLine()) != null) {
                System.out.println(msg);
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                if (isr != null) {
                    isr.close();
                }
                if (br != null) {
                    br.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}


生成jar后写一个批处理即可:

@echo off
::set /p var=请拖入apk:
::java -jar cVerify.jar %var%
java -jar cVerify.jar C:\Users\Harris\Desktop\rePackTool\apk

echo.&echo 请按任意键退出...&pause>nul
exit 


该工具支持文件和文件夹的拖入~

全文完

  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 4
    评论
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值