OSGi:获取包中的类列表

发布于 2024-11-04 08:22:28 字数 68 浏览 2 评论 0原文

是否可以找到给定包中的所有类或接口?在“纯 Java”中没有简单的方法可以做到这一点,但 OSGi 可能做得更好,不是吗?

Is it possible to find all classes or interfaces in a given package? There is no simple way to do it in "plain Java", but OSGi probably does a better job, doesn't it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

天煞孤星 2024-11-11 08:22:28

从 4.3 开始,答案是肯定的。添加了新的 API:

BundleWiring.listResources(String path, String filePattern, int options)

可以使用扫描包的类路径。使用适当的参数,您可以获得包中所有类的名称。

The answer is yes starting in 4.3. A new API has been added:

BundleWiring.listResources(String path, String filePattern, int options)

which can be used to scan the class path of a bundle. With the appropriate parameters, you can get the names of all the classes in a package.

摇划花蜜的午后 2024-11-11 08:22:28

简而言之:不。OSGi 通过在需要时提供类来扩展 Java 类加载机制,但没有 API 允许您检查给定包中哪些类可用。

In short: No. OSGi extends the Java classloading mechanism by providing classes when they are needed, but there is no API that allows you to inspect which classes are available in a given package.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文