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

上一篇:APK .


下一篇:如何利用dex2jar工具将apk安装包转换为java包