public abstract class FilterWriter extends Writer
Modifier | Constructor and Description |
---|---|
protected |
FilterWriter(Writer out) |
Modifier and Type | Method and Description |
---|---|
void |
close() |
void |
flush() |
void |
write(char[] buf,
int offset,
int count)
Note: an implementation of this method should use the 'lock' object
to synchronize with other methods ...
|
void |
write(int oneChar) |
void |
write(String str,
int offset,
int count) |
protected Writer out
protected FilterWriter(Writer out)
public void close() throws IOException
close
in class Writer
IOException
public void flush() throws IOException
flush
in class Writer
IOException
public void write(int oneChar) throws IOException
write
in class Writer
IOException
public void write(char[] buf, int offset, int count) throws IOException
Writer
write
in class Writer
IOException
public void write(String str, int offset, int count) throws IOException
write
in class Writer
IOException