|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.io.Writer
org.apache.commons.io.output.FileWriterWithEncoding
public class FileWriterWithEncoding
Writer of files that allows the encoding to be set.
This class provides a simple alternative to FileWriter
that allows an encoding to be set. Unfortunately, it cannot subclass
FileWriter.
By default, the file will be overwritten, but this may be changed to append.
The encoding must be specified using either the name of the Charset,
the Charset, or a CharsetEncoder. If the default encoding
is required then use the FileWriter directly, rather than
this implementation.
| Field Summary | |
|---|---|
private java.io.Writer |
out
The writer to decorate. |
| Fields inherited from class java.io.Writer |
|---|
lock |
| Constructor Summary | |
|---|---|
FileWriterWithEncoding(java.io.File file,
java.nio.charset.Charset encoding)
Constructs a FileWriterWithEncoding with a file encoding. |
|
FileWriterWithEncoding(java.io.File file,
java.nio.charset.Charset encoding,
boolean append)
Constructs a FileWriterWithEncoding with a file encoding. |
|
FileWriterWithEncoding(java.io.File file,
java.nio.charset.CharsetEncoder encoding)
Constructs a FileWriterWithEncoding with a file encoding. |
|
FileWriterWithEncoding(java.io.File file,
java.nio.charset.CharsetEncoder encoding,
boolean append)
Constructs a FileWriterWithEncoding with a file encoding. |
|
FileWriterWithEncoding(java.io.File file,
java.lang.String encoding)
Constructs a FileWriterWithEncoding with a file encoding. |
|
FileWriterWithEncoding(java.io.File file,
java.lang.String encoding,
boolean append)
Constructs a FileWriterWithEncoding with a file encoding. |
|
FileWriterWithEncoding(java.lang.String filename,
java.nio.charset.Charset encoding)
Constructs a FileWriterWithEncoding with a file encoding. |
|
FileWriterWithEncoding(java.lang.String filename,
java.nio.charset.Charset encoding,
boolean append)
Constructs a FileWriterWithEncoding with a file encoding. |
|
FileWriterWithEncoding(java.lang.String filename,
java.nio.charset.CharsetEncoder encoding)
Constructs a FileWriterWithEncoding with a file encoding. |
|
FileWriterWithEncoding(java.lang.String filename,
java.nio.charset.CharsetEncoder encoding,
boolean append)
Constructs a FileWriterWithEncoding with a file encoding. |
|
FileWriterWithEncoding(java.lang.String filename,
java.lang.String encoding)
Constructs a FileWriterWithEncoding with a file encoding. |
|
FileWriterWithEncoding(java.lang.String filename,
java.lang.String encoding,
boolean append)
Constructs a FileWriterWithEncoding with a file encoding. |
|
| Method Summary | |
|---|---|
void |
close()
Close the stream. |
void |
flush()
Flush the stream. |
private static java.io.Writer |
initWriter(java.io.File file,
java.lang.Object encoding,
boolean append)
Initialise the wrapped file writer. |
void |
write(char[] chr)
Write the characters from an array. |
void |
write(char[] chr,
int st,
int end)
Write the specified characters from an array. |
void |
write(int idx)
Write a character. |
void |
write(java.lang.String str)
Write the characters from a string. |
void |
write(java.lang.String str,
int st,
int end)
Write the specified characters from a string. |
| Methods inherited from class java.io.Writer |
|---|
append, append, append |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
private final java.io.Writer out
| Constructor Detail |
|---|
public FileWriterWithEncoding(java.lang.String filename,
java.lang.String encoding)
throws java.io.IOException
filename - the name of the file to write to, not nullencoding - the encoding to use, not null
java.lang.NullPointerException - if the file name or encoding is null
java.io.IOException - in case of an I/O error
public FileWriterWithEncoding(java.lang.String filename,
java.lang.String encoding,
boolean append)
throws java.io.IOException
filename - the name of the file to write to, not nullencoding - the encoding to use, not nullappend - true if content should be appended, false to overwrite
java.lang.NullPointerException - if the file name or encoding is null
java.io.IOException - in case of an I/O error
public FileWriterWithEncoding(java.lang.String filename,
java.nio.charset.Charset encoding)
throws java.io.IOException
filename - the name of the file to write to, not nullencoding - the encoding to use, not null
java.lang.NullPointerException - if the file name or encoding is null
java.io.IOException - in case of an I/O error
public FileWriterWithEncoding(java.lang.String filename,
java.nio.charset.Charset encoding,
boolean append)
throws java.io.IOException
filename - the name of the file to write to, not nullencoding - the encoding to use, not nullappend - true if content should be appended, false to overwrite
java.lang.NullPointerException - if the file name or encoding is null
java.io.IOException - in case of an I/O error
public FileWriterWithEncoding(java.lang.String filename,
java.nio.charset.CharsetEncoder encoding)
throws java.io.IOException
filename - the name of the file to write to, not nullencoding - the encoding to use, not null
java.lang.NullPointerException - if the file name or encoding is null
java.io.IOException - in case of an I/O error
public FileWriterWithEncoding(java.lang.String filename,
java.nio.charset.CharsetEncoder encoding,
boolean append)
throws java.io.IOException
filename - the name of the file to write to, not nullencoding - the encoding to use, not nullappend - true if content should be appended, false to overwrite
java.lang.NullPointerException - if the file name or encoding is null
java.io.IOException - in case of an I/O error
public FileWriterWithEncoding(java.io.File file,
java.lang.String encoding)
throws java.io.IOException
file - the file to write to, not nullencoding - the encoding to use, not null
java.lang.NullPointerException - if the file or encoding is null
java.io.IOException - in case of an I/O error
public FileWriterWithEncoding(java.io.File file,
java.lang.String encoding,
boolean append)
throws java.io.IOException
file - the file to write to, not nullencoding - the encoding to use, not nullappend - true if content should be appended, false to overwrite
java.lang.NullPointerException - if the file or encoding is null
java.io.IOException - in case of an I/O error
public FileWriterWithEncoding(java.io.File file,
java.nio.charset.Charset encoding)
throws java.io.IOException
file - the file to write to, not nullencoding - the encoding to use, not null
java.lang.NullPointerException - if the file or encoding is null
java.io.IOException - in case of an I/O error
public FileWriterWithEncoding(java.io.File file,
java.nio.charset.Charset encoding,
boolean append)
throws java.io.IOException
file - the file to write to, not nullencoding - the encoding to use, not nullappend - true if content should be appended, false to overwrite
java.lang.NullPointerException - if the file or encoding is null
java.io.IOException - in case of an I/O error
public FileWriterWithEncoding(java.io.File file,
java.nio.charset.CharsetEncoder encoding)
throws java.io.IOException
file - the file to write to, not nullencoding - the encoding to use, not null
java.lang.NullPointerException - if the file or encoding is null
java.io.IOException - in case of an I/O error
public FileWriterWithEncoding(java.io.File file,
java.nio.charset.CharsetEncoder encoding,
boolean append)
throws java.io.IOException
file - the file to write to, not nullencoding - the encoding to use, not nullappend - true if content should be appended, false to overwrite
java.lang.NullPointerException - if the file or encoding is null
java.io.IOException - in case of an I/O error| Method Detail |
|---|
private static java.io.Writer initWriter(java.io.File file,
java.lang.Object encoding,
boolean append)
throws java.io.IOException
file - the file to be accessedencoding - the encoding to use - may be Charset, CharsetEncoder or Stringappend - true to append
java.lang.NullPointerException - if the file or encoding is null
java.io.IOException - if an error occurs
public void write(int idx)
throws java.io.IOException
write in class java.io.Writeridx - the character to write
java.io.IOException - if an I/O error occurs
public void write(char[] chr)
throws java.io.IOException
write in class java.io.Writerchr - the characters to write
java.io.IOException - if an I/O error occurs
public void write(char[] chr,
int st,
int end)
throws java.io.IOException
write in class java.io.Writerchr - the characters to writest - The start offsetend - The number of characters to write
java.io.IOException - if an I/O error occurs
public void write(java.lang.String str)
throws java.io.IOException
write in class java.io.Writerstr - the string to write
java.io.IOException - if an I/O error occurs
public void write(java.lang.String str,
int st,
int end)
throws java.io.IOException
write in class java.io.Writerstr - the string to writest - The start offsetend - The number of characters to write
java.io.IOException - if an I/O error occurs
public void flush()
throws java.io.IOException
flush in interface java.io.Flushableflush in class java.io.Writerjava.io.IOException - if an I/O error occurs
public void close()
throws java.io.IOException
close in interface java.io.Closeableclose in class java.io.Writerjava.io.IOException - if an I/O error occurs
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||