Searched defs:FileOutputStream (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/io/
H A DFileOutputStream.java35 * out = new BufferedOutputStream(new FileOutputStream(file));
52 public class FileOutputStream extends OutputStream { class in inherits:OutputStream
66 * Constructs a new {@code FileOutputStream} that writes to {@code file}. The file will be
71 public FileOutputStream(File file) throws FileNotFoundException { method in class:FileOutputStream
76 * Constructs a new {@code FileOutputStream} that writes to {@code file}.
82 public FileOutputStream(File file, boolean append) throws FileNotFoundException { method in class:FileOutputStream
93 * Constructs a new {@code FileOutputStream} that writes to {@code fd}.
97 public FileOutputStream(FileDescriptor fd) { method in class:FileOutputStream
110 * Constructs a new {@code FileOutputStream} that writes to {@code path}. The file will be
115 public FileOutputStream(Strin method in class:FileOutputStream
126 public FileOutputStream(String path, boolean append) throws FileNotFoundException { method in class:FileOutputStream
[all...]

Completed in 55 milliseconds