Method getSystemResourceAsStream(String name)
Return type:
java.io.InputStream
Member of:
java.lang.ClassLoader
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
this.properties.load(Thread.currentThread().getContextClassLoader().getSystemResourceAsStream("active-jms.properties"));
2
(cFrame, ClassLoader.getSystemResourceAsStream("cdox/cdox.xml"));
3
if (in == null) in = myClassLoader.getSystemResourceAsStream("extensionMappings.properties");
4
("cdox/util/doc/xsl/32index.xsl")));
5
ClassLoader.getSystemResourceAsStream(
6
new StreamSource(ClassLoader.getSystemResourceAsStream(_xsltResource)));
7
InputStream dtdIn = ClassLoader.getSystemResourceAsStream(fileName);
8
in = ClassLoader.getSystemResourceAsStream(resname);
9
in = ClassLoader.getSystemResourceAsStream(fileName);
10
InputStream xmlURL = ClassLoader.getSystemResourceAsStream(lXMLName + ".xml");
11
InputStream is=ClassLoader.getSystemResourceAsStream(propertiesFileName);
12
ClassLoader.getSystemResourceAsStream(path.concat(".gretel"))));
13
is = ClassLoader.getSystemResourceAsStream(SERVICE_ID);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.