Constructor FileInputStream(String name)
Member of:
java.io.FileInputStream
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
return new BufferedInputStream(new FileInputStream(filename));
2
this(owner, new FileInputStream(location));
3
return getContents(new FileInputStream(filename), encoding);
4
return readTree(new BufferedInputStream(new FileInputStream(fileName)));
5
input = new BufferedInputStream(new FileInputStream(filePath));
6
return new FileInputStream(uri);
7
return new BufferedInputStream( new FileInputStream( m_filename ), m_bufferSize );
8
p.load(new FileInputStream(prop));
9
this (t, dec, (inFile != null) ? (InputStream)new FileInputStream(inFile) : (InputStream)new NullInputStream(),
10
new BufferedInputStream ( new FileInputStream ( filename ) ) );
11
return reader(new FileInputStream(fileName));
12
FileInputStream in = new FileInputStream(xmlFile);
13
FileInputStream in = new FileInputStream(filename);
14
FileInputStream fis = new FileInputStream(filename);
15
return loadProps(new FileInputStream(name));
16
parse(new FileInputStream(systemId));
17
FileInputStream source = new FileInputStream(sourcePath);
18
_in = new PushbackInputStream(new FileInputStream(filename));
19
new FileInputStream(args[0]));
20
InputStream in = new FileInputStream("testing/arp/xmlns/wine.rdf");
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.