java.io
Class BufferedWriter

java.lang.Object
  extended by java.io.Writer
      extended by java.io.BufferedWriter


public class BufferedWriter
extends Writer


Field Summary
 
Fields inherited from class java.io.Writer
lock
 
Constructor Summary
BufferedWriter(Writer out)
           
BufferedWriter(Writer out, int size)
           
 
Method Summary
 void close()
           
 void flush()
           
 void newLine()
           
 void write(char b)
           
 void write(char[] b, int off, int len)
           
 
Methods inherited from class java.io.Writer
write, write, write, write
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BufferedWriter

public BufferedWriter(Writer out)

BufferedWriter

public BufferedWriter(Writer out,
                      int size)
Method Detail

close

public void close()
           throws IOException
Specified by:
close in class Writer
Throws:
IOException

write

public void write(char b)
           throws IOException
Throws:
IOException

write

public void write(char[] b,
                  int off,
                  int len)
           throws IOException
Specified by:
write in class Writer
Throws:
IOException

newLine

public void newLine()
             throws IOException
Throws:
IOException

flush

public void flush()
           throws IOException
Specified by:
flush in class Writer
Throws:
IOException