Class FileWriter
java.lang.Object
java.io.Writer
java.io.OutputStreamWriter
java.io.FileWriter
- All Implemented Interfaces:
Closeable, Flushable, Appendable, AutoCloseable
Writes text to character files using a default buffer size. Encoding from characters
to bytes uses either a specified charset
or the default charset.
Whether or not a file is available or may be created depends upon the
underlying platform. Some platforms, in particular, allow a file to be
opened for writing by only one FileWriter (or other file-writing
object) at a time. In such situations the constructors in this class
will fail if the file involved is already open.
The FileWriter is meant for writing streams of characters. For writing
streams of raw bytes, consider using a FileOutputStream.
- Since:
- 1.1
- See Also:
-
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionFileWriter(File file) Constructs aFileWritergiven a file descriptor, using the default charset.FileWriter(File file, boolean append) Constructs aFileWritergiven theFileto write and a boolean indicating whether to append the data written, using the default charset.FileWriter(File file, Charset charset) FileWriter(File file, Charset charset, boolean append) Constructs aFileWritergiven theFileto write, charset and a boolean indicating whether to append the data written.FileWriter(String fileName) Constructs aFileWritergiven a file name, using the default charsetFileWriter(String fileName, boolean append) Constructs aFileWritergiven a file name and a boolean indicating whether to append the data written, using the default charset.FileWriter(String fileName, Charset charset) Constructs aFileWritergiven a file name and charset.FileWriter(String fileName, Charset charset, boolean append) Constructs aFileWritergiven a file name, charset and a boolean indicating whether to append the data written. -
Method Summary
Methods declared in class OutputStreamWriter
close, flush, getEncoding, write, write, writeModifier and TypeMethodDescriptionvoidclose()Closes the stream, flushing it first.voidflush()Flushes the stream.Returns the name of the character encoding being used by this stream.voidwrite(char[] cbuf, int off, int len) Writes a portion of an array of characters.voidwrite(int c) Writes a single character.voidWrites a portion of a string.Methods declared in class Writer
append, append, append, nullWriter, write, writeModifier and TypeMethodDescriptionappend(char c) Appends the specified character to this writer.append(CharSequence csq) Appends the specified character sequence to this writer.append(CharSequence csq, int start, int end) Appends a subsequence of the specified character sequence to this writer.static WriterReturns a newWriterwhich discards all characters.voidwrite(char[] cbuf) Writes an array of characters.voidWrites a string.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
FileWriter
Constructs aFileWritergiven a file name, using the default charset- Parameters:
fileName- String The system-dependent filename.- Throws:
IOException- if the named file exists but is a directory rather than a regular file, does not exist but cannot be created, or cannot be opened for any other reason- See Also:
-
FileWriter
Constructs aFileWritergiven a file name and a boolean indicating whether to append the data written, using the default charset.- Parameters:
fileName- String The system-dependent filename.append- boolean iftrue, then data will be written to the end of the file rather than the beginning.- Throws:
IOException- if the named file exists but is a directory rather than a regular file, does not exist but cannot be created, or cannot be opened for any other reason- See Also:
-
FileWriter
- Parameters:
file- theFileto write.- Throws:
IOException- if the file exists but is a directory rather than a regular file, does not exist but cannot be created, or cannot be opened for any other reason- See Also:
-
FileWriter
Constructs aFileWritergiven theFileto write and a boolean indicating whether to append the data written, using the default charset.- Parameters:
file- theFileto writeappend- iftrue, then bytes will be written to the end of the file rather than the beginning- Throws:
IOException- if the file exists but is a directory rather than a regular file, does not exist but cannot be created, or cannot be opened for any other reason- Since:
- 1.4
- See Also:
-
FileWriter
Constructs aFileWritergiven a file descriptor, using the default charset.- Parameters:
fd- theFileDescriptorto write.- See Also:
-
FileWriter
Constructs aFileWritergiven a file name and charset.- Parameters:
fileName- the name of the file to writecharset- the charset- Throws:
IOException- if the named file exists but is a directory rather than a regular file, does not exist but cannot be created, or cannot be opened for any other reason- Since:
- 11
-
FileWriter
Constructs aFileWritergiven a file name, charset and a boolean indicating whether to append the data written.- Parameters:
fileName- the name of the file to writecharset- the charsetappend- a boolean. Iftrue, the writer will write the data to the end of the file rather than the beginning.- Throws:
IOException- if the named file exists but is a directory rather than a regular file, does not exist but cannot be created, or cannot be opened for any other reason- Since:
- 11
-
FileWriter
- Parameters:
file- theFileto writecharset- the charset- Throws:
IOException- if the file exists but is a directory rather than a regular file, does not exist but cannot be created, or cannot be opened for any other reason- Since:
- 11
-
FileWriter
Constructs aFileWritergiven theFileto write, charset and a boolean indicating whether to append the data written.- Parameters:
file- theFileto writecharset- the charsetappend- a boolean. Iftrue, the writer will write the data to the end of the file rather than the beginning.- Throws:
IOException- if the file exists but is a directory rather than a regular file, does not exist but cannot be created, or cannot be opened for any other reason- Since:
- 11
-