This openOutputStream method of the ClientStoreFile Class contains the following signatures:
openOutputStream()
openOutputStream(boolean append)
Opens an output stream to the file.
public OutputStream openOutputStream() throws IOException;
Returns the OutputStream that is open for writing.
IOException if the file could not be created or truncated.
Opens an output stream to the file, optionally appending to an existing file.
public OutputStream openOutputStream(boolean append) throws IOException;
Returns the output stream that is open for writing.
append | The value that determines whether to append to an existing file. If true, this method appends to an existing file; otherwise, it truncates an existing file. |
IOException if the file could not be created or truncated.