如何通过类名字符串从OSGi运行时环境加载类?
我正在做一个包来插入OSGi,为用户提供一个功能:
Usercase: User input the classname string and click "list" button, the corresponding class will be decompiled and show the text on GUI for user.
这就是我的问题:我只有捆绑包的类加载器,如何才能获得OSGi容器类加载器,以便可以从整个OSGi容器按名称加载类?(我预计当OSGi启动时,它会将所有包和所有类加载到内存中,如果OSGi容器类加载器确实存在并且能够加载任何类,它都可以加载)
有人知道怎么做这项工作吗?非常感谢示例代码。
解决方案
我看到两种可能对您有帮助的情况。
任何可见类
您可以添加类似
的语句DynamicImport-Package: *
添加到您的清单中,然后尝试使用
Class.forName("com.company.class");
所有类,无论是否导出
如果您确实需要查找每个可用类,我不确定您为什么要这样做,但是您可以尝试询问每个包是否"知道"给定的类。由于在这种情况下,您最终可能会有多个同名的类,因此您可以选择正确的类。
您可以这样做
private List<Class<?>> findClass(BundleContext context, String name) {
List<Class<?>> result = new ArrayList<Class<?>>();
for (Bundle b : context.getBundles()) {
try {
Class<?> c = b.loadClass(name);
result.add(c);
} catch (ClassNotFoundException e) {
// No problem, this bundle doesn't have the class
}
}
return result;
}
相关文章