|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.io.OutputStream
com.smaxe.io.ByteArrayOutputStream
public final class ByteArrayOutputStream
ByteArrayOutputStream - OutputStream implementation
based on ByteArray.
Note: The implementation is:
- not thread-safe.
- 1.1 compatible
- DataOutput implementation is AMF0(3) compatible (rather than DataOutputStream).
| Constructor Summary | |
|---|---|
ByteArrayOutputStream(byte[] buf)
Constructor. |
|
ByteArrayOutputStream(byte[] buf,
int offset)
Constructor. |
|
ByteArrayOutputStream(ByteArray buf)
Constructor. |
|
| Method Summary | |
|---|---|
ByteArray |
getArray()
|
int |
getWritten()
|
void |
write(byte[] b,
int off,
int len)
|
void |
write(int b)
|
void |
writeBoolean(boolean v)
|
void |
writeByte(int v)
|
void |
writeBytes(java.lang.String s)
|
void |
writeChar(int v)
|
void |
writeChars(java.lang.String s)
|
static void |
writeContent(ByteArrayOutputStream os,
IContentProvider contentProvider)
Writes content with content 4-bytes 'length' prefix, i.e. |
void |
writeDouble(double v)
|
void |
writeFloat(float v)
|
void |
writeInt(int v)
|
void |
writeLong(long v)
|
void |
writeShort(int v)
|
void |
writeUTF(java.lang.String str)
|
| Methods inherited from class java.io.OutputStream |
|---|
close, flush, write |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface java.io.DataOutput |
|---|
write |
| Constructor Detail |
|---|
public ByteArrayOutputStream(byte[] buf)
buf -
public ByteArrayOutputStream(byte[] buf,
int offset)
buf - offset - public ByteArrayOutputStream(ByteArray buf)
buf - | Method Detail |
|---|
public void write(int b)
throws java.io.IOException
write in interface java.io.DataOutputwrite in class java.io.OutputStreamjava.io.IOException
public void write(byte[] b,
int off,
int len)
throws java.io.IOException
write in interface java.io.DataOutputwrite in class java.io.OutputStreamjava.io.IOException
public void writeBoolean(boolean v)
throws java.io.IOException
writeBoolean in interface java.io.DataOutputjava.io.IOException
public void writeByte(int v)
throws java.io.IOException
writeByte in interface java.io.DataOutputjava.io.IOException
public void writeBytes(java.lang.String s)
throws java.io.IOException
writeBytes in interface java.io.DataOutputjava.io.IOException
public void writeChar(int v)
throws java.io.IOException
writeChar in interface java.io.DataOutputjava.io.IOException
public void writeChars(java.lang.String s)
throws java.io.IOException
writeChars in interface java.io.DataOutputjava.io.IOException
public void writeDouble(double v)
throws java.io.IOException
writeDouble in interface java.io.DataOutputjava.io.IOException
public void writeFloat(float v)
throws java.io.IOException
writeFloat in interface java.io.DataOutputjava.io.IOException
public void writeInt(int v)
throws java.io.IOException
writeInt in interface java.io.DataOutputjava.io.IOException
public void writeLong(long v)
throws java.io.IOException
writeLong in interface java.io.DataOutputjava.io.IOException
public void writeShort(int v)
throws java.io.IOException
writeShort in interface java.io.DataOutputjava.io.IOException
public void writeUTF(java.lang.String str)
throws java.io.IOException
writeUTF in interface java.io.DataOutputjava.io.IOExceptionpublic final ByteArray getArray()
public final int getWritten()
public static void writeContent(ByteArrayOutputStream os,
IContentProvider contentProvider)
throws java.io.IOException
content with content 4-bytes 'length' prefix, i.e.
[content-length][content] is written to the os.
os - contentProvider -
java.io.IOException - if an I/O exception occurred
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||