java.io.FileWriter
FileWriter is a class for writing characters out to a file. The default
character encoding, 8859_1 is currently used to convert characters to bytes
in the file.
Summary
protected |
|
|
Object |
lock |
The object used to synchronize access to the writer. |
Public Constructors
Methods inherited
from class
java.io.Writer
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait
Details
Public Constructors
public
FileWriter(File file)
Creates a FileWriter using the File
file
.
Parameters
file
| the non-null File to write bytes to. |
public
FileWriter(File file, boolean append)
Creates a FileWriter using the File
file
. The parameter
append
determines whether or not the file is opened and
appended to or just opened empty.
Parameters
file
| the non-null File to write bytes to. |
append
| should the file be appened to or opened empty. |
Creates a FileWriter using the existing FileDescriptor
fd
.
Parameters
fd
| the non-null FileDescriptor to write bytes to.
|
public
FileWriter(String filename)
Creates a FileWriter using the platform dependent
filename
.
See the class description for how characters are converted to bytes.
Parameters
filename
| the non-null name of the file to write bytes to. |
public
FileWriter(String filename, boolean append)
Creates a FileWriter using the platform dependent
filename
.
See the class description for how characters are converted to bytes. The
parameter
append
determines whether or not the file is
opened and appended to or just opened empty.
Parameters
filename
| the non-null name of the file to write bytes to. |
append
| should the file be appened to or opened empty. |