apk反编译修改源代码_单击即可将APK反编译为源代码
apk反编译修改源代码
In this tutorial I will guide you how to decompile apk to source code in just one click.
在本教程中,我将指导您如何一键将apk反编译为源代码。
APK file is compressed form of java classes, XML and several other files. As an android developer you may require to decompile apk file to get actual source code. Like if you saw an app with awesome design and you want to know how to implement that design in your project. We use reverse engineering process to get the source code.
APK文件是Java类,XML和其他几个文件的压缩形式。 作为Android开发人员,您可能需要反编译apk文件才能获取实际的源代码。 就像您看到一个具有出色设计的应用程序,并且想知道如何在项目中实现该设计一样。 我们使用****过程来获取源代码。
There are several tools available on the internet like dex2jar, apktool, etc. that will help you to convert apk to soruce code. But for that you have to run several commands and follow lengthy process.
互联网上有几种可用的工具,例如dex2jar,apktool等,可帮助您将apk转换为源代码。 但是为此,您必须运行几个命令并遵循冗长的过程。
Also Read: 5 Best Java Decompilers
另请阅读: 5个最佳Java反编译器
Luckily I found a great online apk decompiler tool www.javadecompilers.com. This tool uses an open sources APK and DEX decompiler known as jadx. It will help you to obtain source code from apk file in just one click.
幸运的是,我发现了一个很棒的在线apk反编译工具www.javadecompilers.com 。 该工具使用称为jadx的开源APK和DEX反编译器。 一键式帮助您从apk文件获取源代码。
如何将APK反编译为源代码 (How to Decompile APK to Source Code)
1. First of all go the below link.
1.首先进入下面的链接。
http://www.javadecompilers.com/apk
http://www.javadecompilers.com/apk
2. Now select the apk file by Choose File option and then click on Upload and Decompile button.
2.现在,通过选择文件选项选择apk文件,然后单击上载和反编译按钮。
3. It will take time to decompile depending upon the size of the file.
3.根据文件的大小,反编译将花费一些时间。
4. After decompilation process finished, click on Save button to download the source code.
4.反编译过程完成后,单击“ 保存”按钮以下载源代码。
You can also watch below video tutorial.
您也可以观看下面的****。
Isn’t it very simple? Yes off course. This tool will let you decompile any apk file, if still you are facing any issue then you can find the general long method at below link.
这不是很简单吗? 是的,当然。 该工具将允许您反编译任何apk文件,如果仍然遇到任何问题,则可以在下面的链接中找到常规的long方法。
http://stackoverflow.com/questions/3593420/is-there-a-way-to-get-the-source-code-from-an-apk-file
http://stackoverflow.com/questions/3593420/is-there-a-way-to-get-the-source-code-from-an-apk-file
Comment below if you are facing any problem. If you found this tutorial useful then please take your few seconds to share it.
如果您遇到任何问题,请在下面评论。 如果您认为本教程很有用,请花几秒钟的时间来分享它。
翻译自: https://www.thecrazyprogrammer.com/2016/06/decompile-apk.html
apk反编译修改源代码