KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > io > FilterWriter

java.io
Class FilterWriter

java.lang.Object
  extended by java.io.Writer
      extended by java.io.FilterWriter
All Implemented Interfaces:
Closeable, Flushable, Appendable
See Also:
Top Examples, Source Code

public void close()
           throws IOException
See Also:
Writer, Closeable
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected FilterWriter(Writer out)
See Also:
NullPointerException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void flush()
           throws IOException
See Also:
Writer, Flushable
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected Writer out
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void write(char[] cbuf,
                  int off,
                  int len)
           throws IOException
See Also:
Writer
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void write(int c)
           throws IOException
See Also:
Writer
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void write(String str,
                  int off,
                  int len)
           throws IOException
See Also:
Writer
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags