Package org.apache.catalina.tribes.io
Class DirectByteArrayOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.apache.catalina.tribes.io.DirectByteArrayOutputStream
-
- All Implemented Interfaces:
java.io.Closeable
,java.io.Flushable
,java.lang.AutoCloseable
public class DirectByteArrayOutputStream extends java.io.OutputStream
Byte array output stream that exposes the byte array directly- Version:
- 1.0
-
-
Constructor Summary
Constructors Constructor Description DirectByteArrayOutputStream(int size)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
getArray()
byte[]
getArrayDirect()
int
size()
void
write(int b)
Writes the specified byte to this output stream.
-
-
-
Method Detail
-
write
public void write(int b) throws java.io.IOException
Writes the specified byte to this output stream.- Specified by:
write
in classjava.io.OutputStream
- Parameters:
b
- thebyte
.- Throws:
java.io.IOException
- if an I/O error occurs. In particular, anIOException
may be thrown if the output stream has been closed.
-
size
public int size()
-
getArrayDirect
public byte[] getArrayDirect()
-
getArray
public byte[] getArray()
-
-