Package | Description |
---|---|
java.io |
Constructor and Description |
---|
FileInputStream(File file)
Creates a
FileInputStream by opening a connection to an actual file, the file named by the
File object file in the file system. |
FileInputStream(String name)
Creates a
FileInputStream by opening a connection to an actual file, the file named by the path name
name in the file system. |
FileOutputStream(File file)
Creates a file output stream to write to the file represented by the specified
File object. |
FileOutputStream(File file,
boolean append)
Creates a file output stream to write to the file represented by the specified
File object. |
FileOutputStream(String name)
Creates a file output stream to write to the file with the specified name.
|
FileOutputStream(String name,
boolean append)
Creates a file output stream to write to the file with the specified name.
|