我正在尝试从放置在 sdcard 上的外部 JAR 文件加载类。许多人成功使用了 DexClassLoader。
我的步骤:
1)从jar文件创建classes.dex文件:
dx --dex --output=classes.dex file.jar
2)将生成的classes.dex文件添加到jar
3)创建DexClassLoader:
ClassLoader classLoader = new DexClassLoader(context.getDir("dex",
Context.MODE_PRIVATE).getAbsolutePath(), jarfile.getAbsolutePath(), null,
context.getClassLoader());
4)当我看到里面的 dex 内容时:
try {
DexFile dx = DexFile.loadDex(jarFile.getAbsolutePath(), File.createTempFile("opt", "dex",
context.getCacheDir()).getPath(), 0);
// Print all classes in the DexFile
for(Enumeration<String> classNames = dx.entries(); classNames.hasMoreElements();) {
String className = classNames.nextElement();
System.out.println("class: " + className);
}
} catch (IOException e) {
e.printStackTrace();
}
DexOpt: --- BEGIN 'file.jar' (bootstrap=0) ---
DexOpt: --- END 'file.jar' (success) ---
DEX prep '/mnt/sdcard/tmp/file.jar': unzip in 0ms, rewrite 83ms
class: com.test.TestClass
5)负载等级:
Class<?> class = classLoader.loadClass("com.test.TestClass");
在这里我得到例外!:
java.lang.ClassNotFoundException: Didn't find class "com.test.TestClass" on path: /data/data/com.myapp/cache/app_dex
我看到它创建了 app_dex 目录,但它是空的。
请帮忙!!!