如何以编程方式计算APK文件的哈希?

时间:2019-05-20 15:53:34

标签: android apk android-package-managers

我想从应用程序内部计算APK文件的MD5哈希值。

PackageInfo info = App.getInstance().getPackageManager().getPackageInfo(getPackageName(), PackageManager.GET_META_DATA);
File file = new File(info.applicationInfo.sourceDir);
String hash = MD5.calculateMD5(file);

MD5哈希计算如下:

private String calculateMD5() {

    MessageDigest digest;

    try {
        digest = MessageDigest.getInstance("MD5");
    } catch (NoSuchAlgorithmException e) {
        return null;
    }

    InputStream is;
    try {
        is = new FileInputStream(file);
    } catch (FileNotFoundException e) {
        return null;
    }

    byte[] buffer = new byte[8192];
    int read;
    try {
        while ((read = is.read(buffer)) > 0) {
            digest.update(buffer, 0, read);
        }
        byte[] md5sum = digest.digest();
        BigInteger bigInt = new BigInteger(1, md5sum);
        String output = bigInt.toString(16);
        output = String.format("%32s", output).replace(' ', '0');
        return output;
    } catch (IOException e) {
        throw new RuntimeException("Unable to process file for MD5", e);
    } finally {
        try {
            is.close();
        } catch (IOException e) {
        }
    }
}

但是,即使我更改了源代码,当我在模拟器中运行时,我仍然会得到相同的哈希值。

这是怎么了?

1 个答案:

答案 0 :(得分:1)

再次检查您是否确实在针对修改后的版本运行。我建议完全卸载然后在代码更改后重新安装。在调试一个Web应用程序两个小时后发现没有部署所做的更改,这是我的艰难方法。