|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.io.OutputStream
jodd.io.StringOutputStream
public class StringOutputStream
Provides an OutputStream to an internal String. Internally converts bytes
to a Strings and stores them in an internal StringBuilder.
| Field Summary | |
|---|---|
protected java.lang.String |
encoding
|
protected java.lang.StringBuilder |
sb
The internal destination StringBuffer. |
| Constructor Summary | |
|---|---|
StringOutputStream()
Creates new StringOutputStream, makes a new internal StringBuffer. |
|
StringOutputStream(java.lang.String encoding)
|
|
| Method Summary | |
|---|---|
void |
close()
Sets the internal StringBuffer to null. |
java.lang.String |
toString()
Returns the content of the internal StringBuffer as a String, the result of all writing to this OutputStream. |
void |
write(byte[] b)
Writes and appends byte array to StringOutputStream. |
void |
write(byte[] b,
int off,
int len)
Writes and appends a byte array to StringOutputStream. |
void |
write(int b)
Writes and appends a single byte to StringOutputStream. |
| Methods inherited from class java.io.OutputStream |
|---|
flush |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
protected final java.lang.StringBuilder sb
protected final java.lang.String encoding
| Constructor Detail |
|---|
public StringOutputStream()
public StringOutputStream(java.lang.String encoding)
| Method Detail |
|---|
public java.lang.String toString()
toString in class java.lang.Objectpublic void close()
close in interface java.io.Closeableclose in class java.io.OutputStream
public void write(byte[] b)
throws java.io.IOException
write in class java.io.OutputStreamb - byte array
java.io.IOException
public void write(byte[] b,
int off,
int len)
throws java.io.IOException
write in class java.io.OutputStreamb - the byte arrayoff - the byte array starting indexlen - the number of bytes from byte array to write to the stream
java.io.IOExceptionpublic void write(int b)
write in class java.io.OutputStreamb - the byte as an int to add
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||