KickJava   Java API By Example, From Geeks To Geeks.

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

java.io
Class Writer

java.lang.Object
  extended by java.io.Writer
All Implemented Interfaces:
Closeable, Flushable, Appendable
Direct Known Subclasses:
BufferedWriter, CharArrayWriter, FilterWriter, OutputStreamWriter, PipedWriter, PrintWriter, StringWriter
See Also:
Top Examples, Source Code, Writer, FileWriter, Reader

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


public Writer append(CharSequence csq)
              throws IOException
See Also:
Appendable
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Writer append(CharSequence csq,
                     int start,
                     int end)
              throws IOException
See Also:
IndexOutOfBoundsException, Appendable
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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


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


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


public void write(char[] cbuf)
           throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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


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


public void write(String str)
           throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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


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


protected Writer(Object lock)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags