java.lang.Object | |||
↳ | java.io.Writer | ||
↳ | java.io.OutputStreamWriter | ||
↳ | java.io.FileWriter |
A specialized
Writer
that writes to a file in the file system.
All write requests made by calling methods in this class are directly
forwarded to the equivalent function of the underlying operating system.
Since this may induce some performance penalty, in particular if many small
write requests are made, a FileWriter is often wrapped by a
BufferedWriter.
[Expand]
Inherited Fields
|
|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.io.Writer
|
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
|
Creates a FileWriter using the File
file
.
|
||||||||||
|
Creates a FileWriter using the File
file
.
|
||||||||||
|
Creates a FileWriter using the existing FileDescriptor
fd
.
|
||||||||||
|
Creates a FileWriter using the platform dependent
filename
.
|
||||||||||
|
Creates a FileWriter using the platform dependent
filename
.
|
[Expand]
Inherited Methods
|
|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.io.OutputStreamWriter
|
|||||||||||
From class
java.io.Writer
|
|||||||||||
From class
java.lang.Object
|
|||||||||||
From interface
java.io.Closeable
|
|||||||||||
From interface
java.io.Flushable
|
|||||||||||
From interface
java.lang.Appendable
|
|||||||||||
From interface
java.lang.AutoCloseable
|
Creates a FileWriter using the File
file
.
file | the non-null File to write bytes to. |
---|
IOException |
if
file
cannot be opened for writing.
|
---|
Creates a FileWriter using the File
file
. The parameter
append
determines whether or not the file is opened and appended
to or just opened and overwritten.
file | the non-null File to write bytes to. |
---|---|
append | indicates whether or not to append to an existing file. |
IOException |
if the
file
cannot be opened for writing.
|
---|
Creates a FileWriter using the existing FileDescriptor
fd
.
fd | the non-null FileDescriptor to write bytes to. |
---|
Creates a FileWriter using the platform dependent
filename
.
filename | the non-null name of the file to write bytes to. |
---|
IOException | if the file cannot be opened for writing. |
---|
Creates a FileWriter using the platform dependent
filename
. The
parameter
append
determines whether or not the file is opened and
appended to or just opened and overwritten.
filename | the non-null name of the file to write bytes to. |
---|---|
append | indicates whether or not to append to an existing file. |
IOException |
if the
file
cannot be opened for writing.
|
---|