Reputation: 16329
I have created two OSGI bundles A and B using the eclipse Plug-in project wizard (using eclipse Helios).
In the manifest file of bundle B I have added bundle A as a dependency. Further I have exported the packages in A so they are visible for B. I also have a .properties file in bundle A that I would like to make visible for bundle B. In the build.properties pane in bundle A I have specified:
source.. = src/
bin.includes = META-INF/,\
.,\
bundle_A.properties
Now in bundle B I try to load the .properties file using:
private Properties loadProperties() {
Properties properties = new Properties();
InputStream istream = this.getClass().getClassLoader().getResourceAsStream(
"bundle_A.properties");
try {
properties.load(istream);
} catch (IOException e) {
logger.error("Properties file not found!", e);
}
return properties;
}
But that gives a nullpointer exception (the file is not found on the classpath).
Is it possible to export resources from bundle A (just like when you export packages) or somehow access the file in A from B in another way (accessing the classloader for bundle A from bundle B)?
Upvotes: 14
Views: 9449
Reputation: 255
Try with /
; if you don't put /
, the class loader will try to load the resource from the same bundle.
this.getClass().getClassLoader().getResourceAsStream( "/bundle_A.properties")
Upvotes: 0
Reputation: 23958
The getEntry(String)
method on Bundle
is intended for this purpose. You can use it to load any resource from any bundle. Also see the methods findEntries()
and getEntryPaths()
if you don't know the exact path to the resource inside the bundle.
There is no need to get hold of the bundle's classloader to do this.
Upvotes: 17
Reputation: 2735
If you're writing an Eclipse plug-in you could try something like:
Bundle bundle = Platform.getBundle("your.plugin.id");
Path path = new Path("path/to/a/file.type");
URL fileURL = Platform.find(bundle, path);
InputStream in = fileURL.openStream();
Upvotes: 4
Reputation: 16152
Have you tried using the BundleContext of bundle A to load resources?
Upvotes: 1
Reputation: 4826
Have you considered adding a method to bundle A's API that loads and returns the resource?
Many might consider this a better design as it allows the name or means of storage of the resource to change without breaking clients of bundle A.
Upvotes: 4