操作步骤如下
1:下载反编译工程
https://github.com/anestisb/vdexExtractor
2:在liunux环境下,执行bash make.sh:编译该工程
3:将手机中的apk或者jar中的vdex文件放到工程的对应目录,生成dex文件
执行以下的命令即可生成dex文件
bin/vdexExtractor -i ./oat/services.vdex -o ./oat -f --dis -l ./oat/dis.log
以上命令不可用时,尝试用以下命令
bin/vdexExtractor -i ./oat/ services.vdex -f --no-unquicken --dis | grep "class #" | cut -d "'" -f2
其中:
-i ./tmp/Videos.vdex:表示要反编译的vdex文件目录
-o ./tmp:表示生成的dex文件所在的目录
网友评论