public abstract class FilterWriter extends Writer
FilterWriter
itself
provides default methods that pass all requests to the
contained stream. Subclasses of FilterWriter
should override some of these methods and may also
provide additional methods and fields.Modifier and Type | Field and Description |
---|---|
protected Writer |
out
The underlying character-output stream.
|
Modifier | Constructor and Description |
---|---|
protected |
FilterWriter(Writer out)
Create a new filtered writer.
|
Modifier and Type | Method and Description |
---|---|
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.
|
protected Writer out
protected FilterWriter(Writer out)
NullPointerException
- if out
is null
out
- a Writer object to provide the underlying stream.public void write(int c) throws IOException
write
in class Writer
IOException
- If an I/O error occursc
- int specifying a character to be writtenpublic void write(char[] cbuf, int off, int len) throws IOException
write
in class Writer
IOException
- If an I/O error occurscbuf
- Buffer of characters to be writtenoff
- Offset from which to start reading characterslen
- Number of characters to be writtenpublic void write(String str, int off, int len) throws IOException
write
in class Writer
IOException
- If an I/O error occursstr
- String to be writtenoff
- Offset from which to start reading characterslen
- Number of characters to be writtenpublic void flush() throws IOException
flush
in interface Flushable
flush
in class Writer
IOException
- If an I/O error occurspublic void close() throws IOException
Writer
close
in interface Closeable
close
in interface AutoCloseable
close
in class Writer
IOException
- If an I/O error occursaicas GmbH, Karlsruhe, Germany —www.aicas.com
Copyright © 2001-2019 aicas GmbH. All Rights Reserved.