如何获取config.properties文件中Felix Framework的属性?

How to obtain Felix Framework's properties in the config.properties file?

我的这行代码 return 是空的,它应该是 return 9193,这是 属性 在我的 config.properties 文件中真正具有的值...

System.getProperty("org.osgi.service.http.port") // returns null dunno why

我的 config.properties 已正确设置 属性:

org.osgi.service.http.port=9193

可能我在这里遗漏了一些东西,因为这是我第一次尝试访问这些属性。我在谷歌上搜索了很多,所以网上缺少示例或者我没有搜索正确的关键字。

我应该 add/change 到该行以使其 return 成为正确的值?

谢谢!

尝试使用BundleContext.getProperty。 config.properties 被设置为 OSGi 框架属性。所以这应该是一种检索它们的方法。