加载中...
The Wayback Machine - https://sup1a9wrlpyh5li9ro.vcoronado.top/web/20090221072224/http://developer.android.com:80/reference/java/io/FileWriter.html
public class

FileWriter

extends OutputStreamWriter
java.lang.Object
   ↳ java.io.Writer
     ↳ java.io.OutputStreamWriter
       ↳ java.io.FileWriter

Class Overview

FileWriter is a class for writing characters out to a file. The default character encoding, 8859_1 is currently used to convert characters to bytes in the file.

See Also

Summary

[Expand]
Inherited Fields
From class java.io.Writer
Public Constructors
FileWriter(File file)
Creates a FileWriter using the File file.
FileWriter(File file, boolean append)
Creates a FileWriter using the File file.
FileWriter(FileDescriptor fd)
Creates a FileWriter using the existing FileDescriptor fd.
FileWriter(String filename)
Creates a FileWriter using the platform dependent filename.
FileWriter(String filename, boolean append)
Creates a FileWriter using the platform dependent filename.
[Expand]
Inherited Methods
From class java.io.OutputStreamWriter
From class java.io.Writer
From class java.lang.Object
From interface java.io.Closeable
From interface java.io.Flushable
From interface java.lang.Appendable

Public Constructors

public FileWriter (File file)

Creates a FileWriter using the File file.

Parameters
file the non-null File to write bytes to.
Throws
IOException If the given file is not found

public FileWriter (File file, boolean append)

Creates a FileWriter using the File file. The parameter append determines whether or not the file is opened and appended to or just opened empty.

Parameters
file the non-null File to write bytes to.
append should the file be appened to or opened empty.
Throws
IOException If the given file is not found

public FileWriter (FileDescriptor fd)

Creates a FileWriter using the existing FileDescriptor fd.

Parameters
fd the non-null FileDescriptor to write bytes to.

public FileWriter (String filename)

Creates a FileWriter using the platform dependent filename. See the class description for how characters are converted to bytes.

Parameters
filename the non-null name of the file to write bytes to.
Throws
IOException If the given file is not found

public FileWriter (String filename, boolean append)

Creates a FileWriter using the platform dependent filename. See the class description for how characters are converted to bytes. The parameter append determines whether or not the file is opened and appended to or just opened empty.

Parameters
filename the non-null name of the file to write bytes to.
append should the file be appened to or opened empty.
Throws
IOException If the given file is not found