how to use DEXtoJar

前端 未结 13 2326
心在旅途
心在旅途 2020-12-22 17:25

I find the solution to decompile a file dex to jar from this link http://code.google.com/p/dex2jar/downloads/list but i don\'t understand how to use it.

13条回答
  •  -上瘾入骨i
    2020-12-22 18:12

    Can be used as follow:

    1. Download dex2jar here and extract it.
    2. Download Java decompiler here (If you want to investigate .class file)
    3. Get you release .apk file and change its extension with .zip
    4. Extract .zip and find the classes.dex and classes2.dex
    5. Paste these files into dex2jar folder where .bat file exist of dex2jar (normally names as d2j-dex2jar)
    6. From dex2jar folder, open cmd [Shift+right click to see option to open cmd/power shell]
    7. Type the command in cmd: d2j-dex2jar release.apk
    8. You will get the .class file, open this file into Java Decompiler.

提交回复
热议问题