1

是否可以像使用 eclipse PDE API 读取插件一样读取功能?目前我使用以下方式阅读插件:

        Bundle[] bundles = Platform.getBundles(name, version);
        if (bundles == null) {
          throw new NullPointerException("No bundle found with ID: " + name
              + " and version: " + version);

        } else {
          for (Bundle bundle : bundles) {
            System.out.println(bundle.getSymbolicName());

          }

        }

但是,如果我指定已安装功能的名称,我只会得到空值。是否有其他方式可以读取功能?

当我阅读该功能时,我想迭代它引用的所有插件。

4

1 回答 1

0

您可以尝试使用 p2 API 来查询已安装的功能。P2 是 eclipse 安装的管理员。

// IProvisioningAgent is a OSGi service
IProvisioningAgent agent = ...;
IProfileRegistry profileRegistry = (IProfileRegistry) agent.getService(IProfileRegistry.SERVICE_NAME);
IProfile profile = profileRegistry.getProfile(IProfileRegistry.SELF);
IQueryResult rt = profile.query(QueryUtil.createIUPropertyQuery("org.eclipse.equinox.p2.eclipse.type", "feature"), null);
于 2010-11-09T05:52:50.900 回答