dexdump命令使用
Posted Mark_YPQ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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盘
以上是关于dexdump命令使用的主要内容,如果未能解决你的问题,请参考以下文章