java.io
Class FileWriter

java.lang.Object
  |
  +--java.io.Writer
        |
        +--java.io.OutputStreamWriter
              |
              +--java.io.FileWriter

public synchronized class FileWriter
extends OutputStreamWriter


Field Summary
 
Fields inherited from class java.io.Writer
lock
 
Constructor Summary
FileWriter(File)
           
FileWriter(File, boolean)
           
FileWriter(FileDescriptor)
           
FileWriter(String)
           
FileWriter(String, boolean)
           
 
Methods inherited from class java.io.OutputStreamWriter
close, flush, getEncoding, write, write, write
 
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

FileWriter

public FileWriter(String)
           throws IOException

FileWriter

public FileWriter(String,
                  boolean)
           throws IOException

FileWriter

public FileWriter(File)
           throws IOException

FileWriter

public FileWriter(File,
                  boolean)
           throws IOException

FileWriter

public FileWriter(FileDescriptor)