|
Qore Programming Language Reference Manual
0.8.13.5
|
This class implements the OutputStream interface for writing bytes to a String buffer. More...

Public Member Functions | |
| nothing | close () |
| Closes the output stream and releases any resources. More... | |
| constructor () | |
| Creates the StringOutputStream. More... | |
| constructor (string encoding) | |
| Creates the StringOutputStream. More... | |
| string | getData () |
| Returns the data written to the stream, clearing the internal buffer. More... | |
| string | getEncoding () |
| Returns the character encoding for the StringOutputStream. More... | |
| nothing | write (binary data) |
| Writes bytes to the output stream. More... | |
Public Member Functions inherited from Qore::OutputStream | |
| constructor () | |
| Constructor. More... | |
This class implements the OutputStream interface for writing bytes to a String buffer.
STREAM-THREAD-ERROR to be thrown.
|
virtual |
Closes the output stream and releases any resources.
Any methods called on a closed output stream will throw an exception.
| OUTPUT-STREAM-CLOSED-ERROR | the output stream has already been closed |
| STREAM-THREAD-ERROR | this exception is thrown if this method is called from any thread other than the thread that created the object |
Implements Qore::OutputStream.
| Qore::StringOutputStream::constructor | ( | ) |
Creates the StringOutputStream.
This variant assumes the Default Character Encoding for the string
| Qore::StringOutputStream::constructor | ( | string | encoding | ) |
Creates the StringOutputStream.
| encoding | the encoding to tag the string data with |
| string Qore::StringOutputStream::getData | ( | ) |
Returns the data written to the stream, clearing the internal buffer.
| OUTPUT-STREAM-CLOSED-ERROR | the output stream has already been closed |
| STREAM-THREAD-ERROR | this exception is thrown if this method is called from any thread other than the thread that created the object |
| string Qore::StringOutputStream::getEncoding | ( | ) |
Returns the character encoding for the StringOutputStream.
|
virtual |
Writes bytes to the output stream.
| data | the data to write |
| OUTPUT-STREAM-CLOSED-ERROR | the output stream has already been closed |
| STREAM-THREAD-ERROR | this exception is thrown if this method is called from any thread other than the thread that created the object |
Implements Qore::OutputStream.