Is there a way to get the source code from an APK file?

The hard drive on my laptop just crashed and I lost all the source code for an app that I have been working on for the past two months. All I have is the APK file that is stored in my email from when I sent it to a friend.

Is there any way to extract my source code from this APK file?


Simple way: use online tool http://www.javadecompilers.com/apk, upload apk and get source code.


Procedure for decoding .apk files, step-by-step method:

Step 1:

  • Make a new folder and copy over the .apk file that you want to decode.

  • Now rename the extension of this .apk file to .zip (eg rename from filename.apk to filename.zip) and save it. Now you can access the classes.dex files, etc. At this stage you are able to see drawables but not xml and java files, so continue.

  • Step 2:

  • Now extract this .zip file in the same folder (or NEW FOLDER).

  • Download dex2jar and extract it to the same folder (or NEW FOLDER).

  • Move the classes.dex file into the dex2jar folder.

  • Now open command prompt and change directory to that folder (or NEW FOLDER). Then write d2j-dex2jar classes.dex (for mac terminal or ubuntu write ./d2j-dex2jar.sh classes.dex ) and press enter. You now have the classes.dex.dex2jar file in the same folder.

  • Download java decompiler, double click on jd-gui, click on open file, and open classes.dex.dex2jar file from that folder: now you get class files.

  • Save all of these class files (In jd-gui, click File -> Save All Sources) by src name. At this stage you get the java source but the .xml files are still unreadable, so continue.

  • Step 3:

    Now open another new folder

  • Put in the .apk file which you want to decode

  • Download the latest version of apktool AND apktool install window (both can be downloaded from the same link) and place them in the same folder

  • Open a command window

  • Now run command like apktool if framework-res.apk and next

  • apktool d myApp.apk (where myApp.apk denotes the filename that you want to decode)

  • now you get a file folder in that folder and can easily read the apk's xml files.

    Step 4:

    It's not any step just copy contents of both folder(in this case both new folder)to the single one

    and enjoy the source code...


    This is an alternative description - just in case someone got stuck with the description above. Follow the steps:

  • download apktool.bat (or apktool for Linux) and apktool_<version>.jar from http://ibotpeaches.github.io/Apktool/install/
  • rename the jar file from above to apktool.jar and put both files in the same folder

  • open a dos box ( cmd.exe ) and change into that folder; verify that a Java Environment is installed (for Linux check the notes regarding required libraries as well)
  • Start: apktool decode [apk file]

    Intermediate result: resource files, AndroidManifest.xml

  • unzip APK file with an unpacker of your choice

    Intermediate result: classes.dex

  • download and extract dex2jar-0.0.9.15.zip from http://code.google.com/p/dex2jar/downloads/detail?name=dex2jar-0.0.9.15.zip&can=2&q=
  • drag and drop classes.dex onto dex2jar.bat (or enter <path_to>dex2jar.bat classes.dex in a DOS box; for Linux use dex2jar.sh )

    Intermediate result: classes_dex2jar.jar

  • unpack classes_dex2jar.jar (might be optional depending on used decompiler)
  • decompile your class files (eg with JD-GUI or DJ Decompiler)

    Result: source code

  • Note: it is not allowed to decompile third party packages; this guide is intended to recover personal source code from an APK file only; finally, the resulting code will most likely be obfuscated


    While you may be able to decompile your APK file, you will likely hit one big issue:

    it's not going to return the code you wrote. It is instead going to return whatever the compiler inlined, with variables given random names, as well as functions given random names. It could take significantly more time to try to decompile and restore it into the code you had, than it will be to start over.

    Sadly, things like this have killed many projects.
    For the future, I highly recommend learning a Version Control System, like CVS , SVN and git etc.

    and how to back it up.

    链接地址: http://www.djcxy.com/p/5486.html

    上一篇: 从联系人选取器获取号码

    下一篇: 有没有办法从APK文件中获取源代码?