类 RandomAccessByteArrayOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- com.alibaba.dubbo.rpc.protocol.thrift.io.RandomAccessByteArrayOutputStream
-
- 所有已实现的接口:
Closeable
,Flushable
,AutoCloseable
public class RandomAccessByteArrayOutputStream extends OutputStream
-
-
构造器概要
构造器 构造器 说明 RandomAccessByteArrayOutputStream()
RandomAccessByteArrayOutputStream(int size)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 void
close()
void
reset()
void
setWriteIndex(int index)
int
size()
byte[]
toByteArray()
ByteBuffer
toByteBuffer()
String
toString()
String
toString(String charset)
void
write(byte[] b, int off, int len)
void
write(int b)
void
writeTo(OutputStream out)
-
从类继承的方法 java.io.OutputStream
flush, nullOutputStream, write
-
-
-
-
方法详细资料
-
write
public void write(int b)
- 指定者:
write
在类中OutputStream
-
write
public void write(byte[] b, int off, int len)
- 覆盖:
write
在类中OutputStream
-
size
public int size()
-
setWriteIndex
public void setWriteIndex(int index)
-
reset
public void reset()
-
toByteArray
public byte[] toByteArray()
-
toByteBuffer
public ByteBuffer toByteBuffer()
-
writeTo
public void writeTo(OutputStream out) throws IOException
- 抛出:
IOException
-
toString
public String toString(String charset) throws UnsupportedEncodingException
-
close
public void close() throws IOException
- 指定者:
close
在接口中AutoCloseable
- 指定者:
close
在接口中Closeable
- 覆盖:
close
在类中OutputStream
- 抛出:
IOException
-
-