This method of the SecurityClassLoader Class retrieves an InputStream associated with a package manager resource with the specified name. As with the findSystemResourceX APIs, this method expects the name to be separated with a "/". For example, the package manager resource name "my/sample/baz.gif" indicates the baz.gif file within the my.sample package.
protected InputStream findPackageManagerResource(String name);
Returns an InputStream associated with the resource, or null if the InputStream cannot be found.
name | The name of the resource to find. |