dexdump命令使用

dexdump 命令行的参数

dexdump: [-c] [-d] [-f] [-h] [-i] [-l layout] [-m] [-t tempfile]
dexfile…

-c : verify checksum and exit
-d : disassemble code sections
-f : display summary information from file header
-h : display file header details
-i : ignore checksum failures
-l : output layout, either ‘plain’ or ‘xml’
-m : dump register maps (and nothing else)
-t : temp file name (defaults to /sdcard/dex-temp-*)

使用方法 可以adb shell
进入android 的命令行操作 也可以
adb shell dexdump -f 操作
dexdump 后面跟这文件名 文件可以是 apk,zip ,jar格式
比如
adb shell dexdump -f /data/app/com.tencent.mobileqq-1.apk
手机安装qq的情况下 打印输出 qqdex文件的头信息
把信息保存到文件
adb shell dexdump -f /data/app/com.tencent.mobileqq-1.apk >>d:abc.txt

/data/app/com.tencent.mobileqq-1.apk 是手机目录, d:abc.txt是电脑的d盘

你可能感兴趣的:(安卓)