java.io
Class BufferedWriter

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

public synchronized class BufferedWriter
extends Writer


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

Constructor Detail

BufferedWriter

public BufferedWriter(Writer)

BufferedWriter

public BufferedWriter(Writer,
                      int)
Method Detail

write

public void write(int)
           throws IOException
Overrides:
write in class Writer
IOException

write

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

write

public void write(String,
                  int,
                  int)
           throws IOException
Overrides:
write in class Writer
IOException

newLine

public void newLine()
             throws IOException
IOException

flush

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

close

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