本文整理汇总了Java中com.caucho.hessian.io.Hessian2Input.readObject方法的典型用法代码示例。如果您正苦于以下问题:Java Hessian2Input.readObject方法的具体用法?Java Hessian2Input.readObject怎么用?Java Hessian2Input.readObject使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.caucho.hessian.io.Hessian2Input
的用法示例。
在下文中一共展示了Hessian2Input.readObject方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: decode
import com.caucho.hessian.io.Hessian2Input; //导入方法依赖的package包/类
@Override
protected Object decode(ChannelHandlerContext ctx, Channel channel,
ChannelBuffer buffer) throws Exception {
ChannelBuffer frame = (ChannelBuffer) super
.decode(ctx, channel, buffer);
if (frame == null) {
return null;
}
ChannelBufferInputStream in = new ChannelBufferInputStream(frame);
Hessian2Input jim = new Hessian2Input(in);
try {
Object o = jim.readObject();
return o;
} finally {
jim.close();
}
}
示例2: unmarshal
import com.caucho.hessian.io.Hessian2Input; //导入方法依赖的package包/类
@Override
public Object unmarshal(final Exchange exchange, final InputStream inputStream) throws Exception {
final Hessian2Input in = new Hessian2Input(inputStream);
try {
in.startMessage();
final Object obj = in.readObject();
in.completeMessage();
return obj;
} finally {
try {
in.close();
} catch (IOException e) {
// ignore
}
}
}
示例3: deserialize
import com.caucho.hessian.io.Hessian2Input; //导入方法依赖的package包/类
@Override
public Object deserialize(InputStream input) {
Object result = null;
try {
Hessian2Input hi = new Hessian2Input(input);
hi.startMessage();
result = hi.readObject();
hi.completeMessage();
hi.close();
input.close();
} catch (IOException e) {
e.printStackTrace();
}
return result;
}
示例4: decodeResponse
import com.caucho.hessian.io.Hessian2Input; //导入方法依赖的package包/类
@Override
public RpcResponse decodeResponse(InputStream inputStream)
throws IOException {
Hessian2Input in = new Hessian2Input(inputStream);
RpcResponse obj = (RpcResponse)in.readObject();
return obj;
}
示例5: readExternal
import com.caucho.hessian.io.Hessian2Input; //导入方法依赖的package包/类
@Override
public void readExternal(Hessian2Input in) throws IOException {
opType = OpType.getOpType( (byte) in.readInt());
boolean isNull = in.readBoolean();
if ( ! isNull ) {
int size = in.readInt();
list = new ArrayList<StoreParas>(size);
for ( int i = 0; i < size ; i++) {
System.out.println("j= "+i);
StoreParas paras = (StoreParas) in.readObject();
//StoreParas paras = StoreParas.toStoreParas(in.readBytes());
list.add( paras);
}
}
}
示例6: decode
import com.caucho.hessian.io.Hessian2Input; //导入方法依赖的package包/类
public Object decode(String className, byte[] bytes) throws Exception {
Hessian2Input input = new Hessian2Input(new ByteArrayInputStream(bytes));
// avoid child object to parent object problem
Object resultObject = input.readObject();
input.close();
return resultObject;
}
示例7: fromByteArray
import com.caucho.hessian.io.Hessian2Input; //导入方法依赖的package包/类
@SuppressWarnings("unchecked")
@SneakyThrows
@Override
public T fromByteArray(byte[] bytes) throws MetaClientException {
checkNotNull(bytes);
try (ByteArrayInputStream is = new ByteArrayInputStream(bytes)) {
Hessian2Input hi = new Hessian2Input(is);
return (T) hi.readObject();
}
}
示例8: deserialize
import com.caucho.hessian.io.Hessian2Input; //导入方法依赖的package包/类
@SuppressWarnings("unchecked")
@Override
public <T> T deserialize(byte[] data, Class<T> clazz) throws Exception {
UnsafeByteArrayInputStream bin = new UnsafeByteArrayInputStream(data);
Hessian2Input in = new Hessian2Input(bin);
in.startMessage();
Object obj = in.readObject(clazz);
in.completeMessage();
in.close();
return (T) obj;
}
示例9: deserialize
import com.caucho.hessian.io.Hessian2Input; //导入方法依赖的package包/类
@Override
public Object deserialize(byte[] data) {
ByteArrayInputStream is = new ByteArrayInputStream(data);
Hessian2Input hi = new Hessian2Input(is);
Object obj=null;
try {
obj = hi.readObject();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return obj;
}
示例10: readFrom
import com.caucho.hessian.io.Hessian2Input; //导入方法依赖的package包/类
@Override
@SuppressWarnings("unchecked")
public <T> T readFrom(InternalRequest<Object> request, Type<T> clazz) {
try {
Hessian2Input in = new Hessian2Input(request.getInputStream());
in.startMessage();
T object = (T) in.readObject();
in.completeMessage();
return object;
} catch (IOException e) {
throw new RuntimeException("An error occurred during unmarshalling from Hessian.", e);
}
}
示例11: loadFromCompressedFile
import com.caucho.hessian.io.Hessian2Input; //导入方法依赖的package包/类
public static Object loadFromCompressedFile(String fileName) {
Hessian2Input his = getInputStream(fileName);
try {
Object o = his.readObject();
his.close();
return o;
} catch (IOException e) {
return null;
}
}
示例12: read
import com.caucho.hessian.io.Hessian2Input; //导入方法依赖的package包/类
private static Object read(byte[] data) throws Exception {
ByteArrayInputStream inputStream=new ByteArrayInputStream(data);
Hessian2Input input=new Hessian2Input(inputStream);
input.setSerializerFactory(SERIALIZER_FACTORY);
// Simple someObject = kryo.readObject(input, Simple.class);
Object obj=input.readObject();
input.close();
// System.out.println(someObject.getCacheObject());
return obj;
}
示例13: deserialize
import com.caucho.hessian.io.Hessian2Input; //导入方法依赖的package包/类
public <T> T deserialize(byte[] bytes, Class<T> clazz) throws Exception {
ByteArrayInputStream bin = new ByteArrayInputStream(bytes);
Hessian2Input in = new Hessian2Input(bin);
// in.startMessage();
Object obj = in.readObject(clazz);
// in.completeMessage();
return clazz.cast(obj);
}
示例14: deSerialize
import com.caucho.hessian.io.Hessian2Input; //导入方法依赖的package包/类
@Override
public Object deSerialize(byte[] byteBuf) throws IOException {
Hessian2Input input = new Hessian2Input(new ByteArrayInputStream(byteBuf));
Object resultObject = input.readObject();
input.close();
return resultObject;
}
示例15: decodeRequest
import com.caucho.hessian.io.Hessian2Input; //导入方法依赖的package包/类
@Override
public RpcRequest decodeRequest(InputStream inputStream) throws IOException {
Hessian2Input in = new Hessian2Input(inputStream);
RpcRequest obj = (RpcRequest)in.readObject();
return obj;
}