Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)

Class java.io.FilterWriter

java.lang.Object
   |
   +----java.io.Writer
           |
           +----java.io.FilterWriter

public abstract class FilterWriter
extends Writer

Abstract class for writing filtered character streams.


Variable Index

out
The underlying character-output stream.

Constructor Index

FilterWriter(Writer)
Create a new filtered writer.

Method Index

close()
Close the stream.
flush()
Flush the stream.
write(char[], int, int)
Write a portion of an array of characters.
write(int)
Write a single character.
write(String, int, int)
Write a portion of a string.

Variables

out
 protected Writer out
The underlying character-output stream.


Constructors

FilterWriter
 protected FilterWriter(Writer out)
Create a new filtered writer.


Methods

write
 public void write(int c) throws IOException
Write a single character.

Throws: IOException
If an I/O error occurs
Overrides:
write in class Writer
write
 public void write(char cbuf[],
                   int off,
                   int len) throws IOException
Write a portion of an array of characters.

Parameters:
cbuf - Buffer of characters to be written
off - Offset from which to start reading characters
len - Number of characters to be written
Throws: IOException
If an I/O error occurs
Overrides:
write in class Writer
write
 public void write(String str,
                   int off,
                   int len) throws IOException
Write a portion of a string.

Parameters:
str - String to be written
off - Offset from which to start reading characters
len - Number of characters to be written
Throws: IOException
If an I/O error occurs
Overrides:
write in class Writer
flush
 public void flush() throws IOException
Flush the stream.

Throws: IOException
If an I/O error occurs
Overrides:
flush in class Writer
close
 public void close() throws IOException
Close the stream.

Throws: IOException
If an I/O error occurs
Overrides:
close in class Writer

Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)