Home | History | Annotate | Download | only in io

Lines Matching refs:FileWriter

37  * opened for writing by only one <tt>FileWriter</tt> (or other file-writing
41 * <p><code>FileWriter</code> is meant for writing streams of characters.
52 public class FileWriter extends OutputStreamWriter {
55 * Constructs a FileWriter object given a file name.
62 public FileWriter(String fileName) throws IOException {
67 * Constructs a FileWriter object given a file name with a boolean
77 public FileWriter(String fileName, boolean append) throws IOException {
82 * Constructs a FileWriter object given a File object.
89 public FileWriter(File file) throws IOException {
94 * Constructs a FileWriter object given a File object. If the second
106 public FileWriter(File file, boolean append) throws IOException {
111 * Constructs a FileWriter object associated with a file descriptor.
115 public FileWriter(FileDescriptor fd) {