我正在尝试使用dex2jar在普通的Java应用程序中读取dex文件(Android APK)。

我有一个APK的文件对象,然后只需调用new DexFileReader(dex)

但是,这将引发以下异常“不支持魔术”:

com.googlecode.d2j.DexException: not support magic.
at com.googlecode.d2j.reader.DexFileReader.<init>(DexFileReader.java:160)
at com.googlecode.d2j.reader.DexFileReader.<init>(DexFileReader.java:258)
at com.googlecode.d2j.reader.DexFileReader.<init>(DexFileReader.java:276)


源代码显示以下块:

in = in.asReadOnlyBuffer().order(ByteOrder.BIG_ENDIAN);
int magic = in.getInt() & 0xFFFFFF00;

final int MAGIC_DEX = 0x6465780A & 0xFFFFFF00;// hex for 'dex ', ignore the 0A
final int MAGIC_ODEX = 0x6465790A & 0xFFFFFF00;// hex for 'dey ', ignore the 0A

if (magic == MAGIC_DEX) {
    ...
} else if (magic == MAGIC_ODEX) {
    ...
} else {
    throw new DexException("not support magic.");
}


我的假设是我错过了一个步骤,需要从APK转换为基本dex格式,但是未在wiki的示例“想使用dex2jar读取dex文件”中显示(上面链接)。

如何成功阅读APK?我错过了什么?

最佳答案

apk基本上是一个zip文件。它包含dex-但不仅限于此。因此,请首先从那里提取dex,然后运行dex2jar。

08-17 09:40