我在我的android应用程序中使用来自资产或sdcard的外部jar。为此,我使用的是DexClassLoader。
DexClassLoader cl = new DexClassLoader(dexInternalStoragePath.getAbsolutePath(),
optimizedDexOutputPath.getAbsolutePath(),
null,
getClassLoader());
加载一个类:
Class myNewClass = cl.loadClass("com.example.dex.lib.LibraryProvider");
它的工作非常好但现在我想得到我的DexClassLoader中所有类名的列表 我发现this可以在java中工作,但在android中没有这样的东西。
问题是如何从DexClassLoader
获取所有类名的列表答案 0 :(得分:13)
要列出包含classes.dex
文件的.jar文件中的所有类,请使用DexFile
,而不是DexClassLoader
,例如像这样:
String path = "/path/to/your/library.jar"
try {
DexFile dx = DexFile.loadDex(path, File.createTempFile("opt", "dex",
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) {
Log.w(TAG, "Error opening " + path, e);
}