0

我正在尝试解析文件 dex,我编写了 Java 代码来获取以下信息:

  • 项目清单
  • 标题
  • string_ids
  • type_ids
  • proto_ids
  • field_ids
  • 方法ID
  • 类定义

只需根据各个字段的大小进行字节移位。

现在我想获取字节码,然后是源代码,即有问题的 dex 文件。也许这些信息可以在结构“code_item”中找到?
如果是这样,我在什么时候阻塞内存才能读取它。

提前致谢!

4

1 回答 1

3

您可以查看dexlib2 库,它是smali/baksmali项目的一部分。它提供了一个易于使用的 api 来访问 dex 文件中的信息。

示例代码:

DexFile dexFile = DexFileFactory.loadDexFile("blah.dex", 15);

for (ClassDef classDef: dexFile.getClasses()) {
  for (Method method: classDef.getMethods()) {
    MethodImplementation impl = method.getImplementation();
    if (impl != null) {
      for (Instruction instruction: impl.getInstructions()) {
        // process instruction as needed...
      }
    }
  }
}
于 2013-11-11T19:31:27.890 回答