我使用osgi和blueprint,我搜索如何读取我的包中的文件? 如 : mybundle
我想在myservice中读取file.json。
答案 0 :(得分:9)
要做到这一点,简单的方法是在你的bean中注入bundlecontext
<强> blueprint.xml 强>
<bean id="plugin" class="com.timactive.MyBean" init-method="start">
<property name="bcontext" ref="blueprintBundleContext"></property>
</bean>
可能的参考:
<强> blueprintBundle 强> 提供bundle的Bundle对象。
<强> blueprintBundleContext 强> 提供bundle的BundleContext对象。
<强> blueprintContainer 强> 为bundle提供BlueprintContainer对象。
<强> blueprintConverter 强> 为bundle提供Converter对象,该对象提供对Blueprint Container类型转换工具的访问。类型转换有更多信息。 源:http://www.ibm.com/developerworks/opensource/library/os-osgiblueprint/
在你的班上:
import org.osgi.framework.Bundle;
import org.osgi.framework.BundleContext
public class MyBean {
public BundleContext bcontext;
public boolean start(){
try {
Bundle bundle = bcontext.getBundle();
InputStream is = bundle.getEntry("/file.json").openStream();
String jsondb = readFile(is);
} catch (IOException e) {
LOG.error("The file treefield.json not found", e);
return(false);
}
}
return(true);
}
private String readFile(InputStream is ) throws IOException {
java.util.Scanner s = new java.util.Scanner(is).useDelimiter("\\A");
return s.hasNext() ? s.next() : "";
}
public void setBcontext(BundleContext bcontext) {
this.bcontext = bcontext;
}