|
Préférences
Moteurs de recherche
|
||||||||||||||||||||||||||||
| JavaTM 2 Platform Std. Ed. v1.6.0
java.io
|
|||||||||||||||||||||||||||||
| Field Summary | |
|---|---|
protected Writer |
out
The underlying character-output stream. |
| Fields inherited from class java.io.Writer |
|---|
lock |
| Constructor Summary | |
|---|---|
protected |
FilterWriter(Writer out)
Create a new filtered writer. |
| Method Summary | |
|---|---|
void |
close()
Closes the stream, flushing it first. |
void |
flush()
Flushes the stream. |
void |
write(char[] cbuf,
int off,
int len)
Writes a portion of an array of characters. |
void |
write(int c)
Writes a single character. |
void |
write(String str,
int off,
int len)
Writes a portion of a string. |
| Methods inherited from class java.io.Writer |
|---|
append, append, append, write, write |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected Writer out
| Constructor Detail |
|---|
protected FilterWriter(Writer out)
out - a Writer object to provide the underlying stream.
NullPointerException - if out is null| Method Detail |
|---|
public void write(int c)
throws IOException
c - int specifying a character to be written
IOException - If an I/O error occurs
public void write(char[] cbuf,
int off,
int len)
throws IOException
cbuf - Buffer of characters to be writtenoff - Offset from which to start reading characterslen - Number of characters to be written
IOException - If an I/O error occurspublic void write(String str, int off, int len) throws IOException
str - String to be writtenoff - Offset from which to start reading characterslen - Number of characters to be written
IOException - If an I/O error occurs
public void flush()
throws IOException
IOException - If an I/O error occurs
public void close()
throws IOException
Writer
IOException - If an I/O error occurs