Home | History | Annotate | Download | only in io

Lines Matching defs:FileOutputStream

35  *     out = new BufferedOutputStream(new FileOutputStream(file));
52 public class FileOutputStream extends OutputStream {
66 * Constructs a new {@code FileOutputStream} that writes to {@code file}. The file will be
71 public FileOutputStream(File file) throws FileNotFoundException {
76 * Constructs a new {@code FileOutputStream} that writes to {@code file}.
82 public FileOutputStream(File file, boolean append) throws FileNotFoundException {
93 * Constructs a new {@code FileOutputStream} that writes to {@code fd}.
97 public FileOutputStream(FileDescriptor fd) {
110 * Constructs a new {@code FileOutputStream} that writes to {@code path}. The file will be
115 public FileOutputStream(String path) throws FileNotFoundException {
120 * Constructs a new {@code FileOutputStream} that writes to {@code path}.
126 public FileOutputStream(String path, boolean append) throws FileNotFoundException {