Returns a input file stream to read from using the specified filename, file or file descriptor object.
Syntax
FileInputStream( file )
FileInputStream( filedescriptor )
FileInputStream( name )
Parameters
file
|
a specified file object.
|
filedescriptor
|
the specified filedescriptor object.
|
name
|
the name of the file to open.
|
Returns
fileinputstream
|
the new file input stream object.
|
Example
ifh = FileInputStream( fh )
|