Constructor FileOutputStream(File file, boolean append)
Member of:
java.io.FileOutputStream
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
fileStream = new FileOutputStream(lockFile, true);
2
fileStream = new FileOutputStream(tableFile, true);
3
fileStream = new FileOutputStream(lock, true);
4
output = new BufferedOutputStream(new FileOutputStream(location.toFile(), false));
5
fos = new FileOutputStream(outfile, false); // no append
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.