当前位置: 首页>>代码示例>>Java>>正文


Java UnsafeByteArrayInputStream类代码示例

本文整理汇总了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));
    }
}
 
开发者ID:linux-china,项目名称:dubbo3,代码行数:17,代码来源:Builder.java

示例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;
}
 
开发者ID:dachengxi,项目名称:EatDubbo,代码行数:10,代码来源:CodecAdapter.java

示例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)); }
}
 
开发者ID:dachengxi,项目名称:EatDubbo,代码行数:15,代码来源:Builder.java

示例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);
}
 
开发者ID:dachengxi,项目名称:EatDubbo,代码行数:13,代码来源:DataInputOutputTest.java


注:本文中的com.alibaba.dubbo.common.io.UnsafeByteArrayInputStream类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。