Python 使用 Python 获取待测 APP 的相关参数信息

大海 · 2020年02月21日 · 最后由 HangwahAu 回复于 2020年03月03日 · 1680 次阅读
# coding=utf-8

"""
使用Python获取待测APP的相关参数信息
"""


from math import floor
import os
import subprocess


class APP:
    # 待测试应用路径
    apkPath = "D:\\XXX.apk"

    def __init__(self):
        self.aapt = "D:\\Android\\android-sdk\\build-tools\\28.0.3\\aapt dump badging "


    # 获取APP的文件大小
    def get_apk_size(self):
        size = floor(os.path.getsize(self.apkPath) / (1024 * 1000))
        return str(size) + "M"

    # 获取APP的版本信息
    def get_apk_version(self):
        cmd = self.aapt + self.apkPath
        result = ""
        p = subprocess.Popen(cmd, stdout=subprocess.PIPE,
                             stderr=subprocess.PIPE,
                             stdin=subprocess.PIPE, shell=True)
        (output, err) = p.communicate()
        if output != "":
            result = output.split()[3].decode()[12:]
            result = result.split("'")[1]
        return result

    # 获取APP的名字
    def get_apk_name(self):
        cmd = self.aapt + self.apkPath + " | findstr application-label-zu: "
        result = ""
        p = subprocess.Popen(cmd, stdout=subprocess.PIPE,
                             stderr=subprocess.PIPE,
                             stdin=subprocess.PIPE, shell=True)
        (output, err) = p.communicate()
        output = str(output, encoding='utf8')
        if output != "":
            result = output.split("'")[1]
        return result

    # 获取APP的包名
    def get_apk_package(self):
        cmd = self.aapt + self.apkPath + " | findstr package:"
        result = ""
        p = subprocess.Popen(cmd, stdout=subprocess.PIPE,
                             stderr=subprocess.PIPE,
                             stdin=subprocess.PIPE, shell=True)
        (output, err) = p.communicate()
        output = str(output, encoding='utf8')
        if output != "":
            result = output.split()[1][6:-1]
        return result

    # 得到启动类
    def get_apk_activity(self):
        cmd = self.aapt + self.apkPath + " | findstr launchable-activity:"
        result = ""
        p = subprocess.Popen(cmd, stdout=subprocess.PIPE,
                             stderr=subprocess.PIPE,
                             stdin=subprocess.PIPE, shell=True)
        (output, err) = p.communicate()
        if output != "":
            result = output.split()[1].decode()[6:-1]
        return result


if __name__ == '__main__':
    APPInfo = APP()
    print("应用名称:", APPInfo.get_apk_name())
    print("app文件大小:", APPInfo.get_apk_size())
    print("app版本信息:", APPInfo.get_apk_version())
    print("app包名:", APPInfo.get_apk_package())
    print("app的启动类:", APPInfo.get_apk_activity())


Process finished with exit code 0

如果觉得我的文章对您有用,请随意打赏。您的支持将鼓励我继续创作!
共收到 3 条回复 时间 点赞

你好 小白想问一下 def init(self):
self.aapt = "D:\Android\android-sdk\build-tools\28.0.3\aapt dump badging " 这个路径是什么


aapt dump badging 是命令

命令:aapt dump badging
查看 apk 包的 packageName、versionCode、applicationLabel、launcherActivity、permission 等各种详细信息


想请问一下为什么有几个信息无法获取呢?我的版本是 3.7.0.
而且中文好像没办法输出,我在文件第一行加了 # -- coding: UTF-8 --。Python 初学者,望指点指点

需要 登录 后方可回复, 如果你还没有账号请点击这里 注册