|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface FileOutputStreamFactory
This interface defines an interface for creating FileOutputStream
:s.
It is used to open streams with certain properties without having to make the
code opening the stream take care of that.
A factory instance should only be used once and then discarded.
Method Summary | |
---|---|
FileOutputStream |
createFileOutputStream(File f,
boolean append)
Create a FileOutputStream on the file. |
Method Detail |
---|
FileOutputStream createFileOutputStream(File f, boolean append) throws FileNotFoundException
FileOutputStream
on the file.
f
- The file to open.
FileOutputStream
.
FileNotFoundException
- If the file is not found.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |