本文整理汇总了Java中com.alibaba.dubbo.common.io.UnsafeByteArrayInputStream类的典型用法代码示例。如果您正苦于以下问题:Java UnsafeByteArrayInputStream类的具体用法?Java UnsafeByteArrayInputStream怎么用?Java UnsafeByteArrayInputStream使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
UnsafeByteArrayInputStream类属于com.alibaba.dubbo.common.io包,在下文中一共展示了UnsafeByteArrayInputStream类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: parseFrom
import com.alibaba.dubbo.common.io.UnsafeByteArrayInputStream; //导入依赖的package包/类
@Override
public Serializable parseFrom(GenericObjectInput in) throws IOException {
byte b = in.read0();
if (b == OBJECT_NULL)
return null;
if (b != OBJECT_STREAM)
throw new IOException("Input format error, expect OBJECT_NULL|OBJECT_STREAM, get " + b + ".");
UnsafeByteArrayInputStream bis = new UnsafeByteArrayInputStream(in.read0(in.readUInt()));
CompactedObjectInputStream ois = new CompactedObjectInputStream(bis);
try {
return (Serializable) ois.readObject();
} catch (ClassNotFoundException e) {
throw new IOException(StringUtils.toString(e));
}
}
示例2: decode
import com.alibaba.dubbo.common.io.UnsafeByteArrayInputStream; //导入依赖的package包/类
public Object decode(Channel channel, ChannelBuffer buffer) throws IOException {
byte[] bytes = new byte[buffer.readableBytes()];
int savedReaderIndex = buffer.readerIndex();
buffer.readBytes(bytes);
UnsafeByteArrayInputStream is = new UnsafeByteArrayInputStream(bytes);
Object result = codec.decode(channel, is);
buffer.readerIndex(savedReaderIndex + is.position());
return result == Codec.NEED_MORE_INPUT ? DecodeResult.NEED_MORE_INPUT : result;
}
示例3: parseFrom
import com.alibaba.dubbo.common.io.UnsafeByteArrayInputStream; //导入依赖的package包/类
@Override
public Serializable parseFrom(GenericObjectInput in) throws IOException
{
byte b = in.read0();
if( b == OBJECT_NULL )
return null;
if( b != OBJECT_STREAM )
throw new IOException("Input format error, expect OBJECT_NULL|OBJECT_STREAM, get " + b + ".");
UnsafeByteArrayInputStream bis = new UnsafeByteArrayInputStream(in.read0(in.readUInt()));
CompactedObjectInputStream ois = new CompactedObjectInputStream(bis);
try{ return (Serializable)ois.readObject(); }
catch(ClassNotFoundException e){ throw new IOException(StringUtils.toString(e)); }
}
示例4: testMain
import com.alibaba.dubbo.common.io.UnsafeByteArrayInputStream; //导入依赖的package包/类
public void testMain() throws Exception
{
// write.
UnsafeByteArrayOutputStream os = new UnsafeByteArrayOutputStream();
DataOutput cos = new GenericDataOutput(os);
writeTest(cos);
// read.
byte[] b = os.toByteArray();
DataInput cis = new GenericDataInput(new UnsafeByteArrayInputStream(b));
readTest(cis);
}