Android反编译
作者:互联网
原文链接:http://www.cnblogs.com/cnforest/archive/2012/05/03/2480404.html
需要的工具:
dex2jar :http://laichao.googlecode.com/files/dex2jar-0.0.7-SNAPSHOT.zip
JD-GUI:http://laichao.googlecode.com/files/jdgui.zip
使用方法:
将android apk文件用zip解压后找到classes.dex文件,然后调用dex2jar工具将其转换成.jar文件,命令为:
dex2jar.bat classes.dex
用JD-GUI阅读.jar文件相信大家都比较熟悉了吧。
还有一个比较好用的工具apktool,它是google提供的APK编译工具,需要Java运行环境,下载地址:http://code.google.com/p/android-apktool/
这个工具只能把APK包解析成.smali文件,这个是android手机可以读懂的语言,类似于
汇编。使用命令为:apktool d e:anyPath.apk e:anyPath。
转载于:https://www.cnblogs.com/cnforest/archive/2012/05/03/2480404.html
标签:反编译,http,dex2jar,zip,apktool,Android,com,android 来源: https://blog.csdn.net/weixin_30809173/article/details/95744057