本文整理汇总了Java中com.caucho.hessian.io.Hessian2Output.writeObject方法的典型用法代码示例。如果您正苦于以下问题:Java Hessian2Output.writeObject方法的具体用法?Java Hessian2Output.writeObject怎么用?Java Hessian2Output.writeObject使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.caucho.hessian.io.Hessian2Output
的用法示例。
在下文中一共展示了Hessian2Output.writeObject方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: encode
import com.caucho.hessian.io.Hessian2Output; //导入方法依赖的package包/类
@Override
protected Object encode(ChannelHandlerContext ctx, Channel channel,
Object msg) throws Exception {
ChannelBufferOutputStream bout = new ChannelBufferOutputStream(
dynamicBuffer(1024, ctx.getChannel().getConfig()
.getBufferFactory()));
bout.write(LENGTH_PLACEHOLDER);
Hessian2Output h2o = new Hessian2Output(bout);
try {
h2o.writeObject(msg);
h2o.flush();
} finally {
h2o.close();
}
ChannelBuffer encoded = bout.buffer();
encoded.setInt(0, encoded.writerIndex() - 4);
return encoded;
}
示例2: marshal
import com.caucho.hessian.io.Hessian2Output; //导入方法依赖的package包/类
@Override
public void marshal(final Exchange exchange, final Object graph, final OutputStream outputStream) throws Exception {
final Hessian2Output out = new Hessian2Output(outputStream);
try {
out.startMessage();
out.writeObject(graph);
out.completeMessage();
} finally {
out.flush();
try {
out.close();
} catch (IOException e) {
// ignore
}
}
}
示例3: serialize
import com.caucho.hessian.io.Hessian2Output; //导入方法依赖的package包/类
@Override
public void serialize(OutputStream output, Object object) {
Hessian2Output ho = new Hessian2Output(output);
try {
ho.startMessage();
ho.writeObject(object);
ho.completeMessage();
ho.close();
output.close();
} catch (IOException e) {
e.printStackTrace();
}
}
示例4: encodeResponse
import com.caucho.hessian.io.Hessian2Output; //导入方法依赖的package包/类
@Override
public void encodeResponse(OutputStream outputStream, RpcResponse result)
throws IOException {
Hessian2Output out = new Hessian2Output(outputStream);
out.writeObject(result);
out.flush();
}
示例5: encodeRequest
import com.caucho.hessian.io.Hessian2Output; //导入方法依赖的package包/类
@Override
public void encodeRequest(OutputStream outputStream, RpcRequest request)
throws IOException {
Hessian2Output out = new Hessian2Output(outputStream);
out.writeObject(request);
out.flush();
}
示例6: serialize
import com.caucho.hessian.io.Hessian2Output; //导入方法依赖的package包/类
@Override
public byte[] serialize(Object data) throws IOException {
ByteArrayOutputStream bos = new ByteArrayOutputStream();
Hessian2Output out = new Hessian2Output(bos);
out.writeObject(data);
out.flush();
return bos.toByteArray();
}
示例7: toBytes
import com.caucho.hessian.io.Hessian2Output; //导入方法依赖的package包/类
@Override
public byte[] toBytes(Object object) {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
try {
Hessian2Output oos = new Hessian2Output(baos);
oos.writeObject(object);
oos.flushBuffer();
}
catch (java.io.IOException ioe) {
throw new RuntimeException(ioe.getMessage(), ioe);
}
return baos.toByteArray();
}
示例8: writeExternal
import com.caucho.hessian.io.Hessian2Output; //导入方法依赖的package包/类
@Override
public void writeExternal(Hessian2Output out) throws IOException {
out.writeInt(opType.value);
if ( size() == 0)
out.writeBoolean(true);
else {
out.writeBoolean( false);
out.writeInt(size());
for (StoreParas each : list ) {
//out.writeBytes( each.toBytes());
out.writeObject( each);
}
}
}
示例9: encode
import com.caucho.hessian.io.Hessian2Output; //导入方法依赖的package包/类
public byte[] encode(Object object) throws Exception {
ByteArrayOutputStream byteArray = new ByteArrayOutputStream();
Hessian2Output output = new Hessian2Output(byteArray);
output.writeObject(object);
output.close();
byte[] bytes = byteArray.toByteArray();
return bytes;
}
示例10: toByteArray
import com.caucho.hessian.io.Hessian2Output; //导入方法依赖的package包/类
@SneakyThrows
@Override
public byte[] toByteArray(T t) throws MetaClientException {
checkNotNull(t);
try (ByteArrayOutputStream os = new ByteArrayOutputStream(defaultByteArrayBufferSize)) {
Hessian2Output ho = new Hessian2Output(os);
ho.writeObject(t);
ho.flush();
return os.toByteArray();
}
}
示例11: serialize
import com.caucho.hessian.io.Hessian2Output; //导入方法依赖的package包/类
@Override
public byte[] serialize(Object obj) throws Exception {
UnsafeByteArrayOutputStream bos = new UnsafeByteArrayOutputStream();
Hessian2Output out = new Hessian2Output(bos);
out.startMessage();
out.writeObject(obj);
out.completeMessage();
out.close();
return bos.toByteArray();
}
示例12: serialize
import com.caucho.hessian.io.Hessian2Output; //导入方法依赖的package包/类
@Override
public byte[] serialize(Object obj) {
ByteArrayOutputStream os = new ByteArrayOutputStream();
Hessian2Output ho = new Hessian2Output(os);
try {
ho.writeObject(obj);
ho.flushBuffer();
} catch (IOException e) {
e.printStackTrace();
}
return os.toByteArray();
}
示例13: writeTo
import com.caucho.hessian.io.Hessian2Output; //导入方法依赖的package包/类
@Override
public void writeTo(InternalResponse<?> response, InternalRequest<?> request) {
try {
Hessian2Output out = new Hessian2Output(response.getOutputStream());
out.startMessage();
out.writeObject(response.getEntity().get());
out.completeMessage();
out.flushBuffer();
out.flush();
} catch (IOException e) {
throw new RuntimeException("An error occurred during marshalling to Hessian.", e);
}
}
示例14: saveToCompressedFile
import com.caucho.hessian.io.Hessian2Output; //导入方法依赖的package包/类
public static boolean saveToCompressedFile(Object o, String fileName) {
Hessian2Output hos = getOutputStream(fileName);
try {
hos.writeObject(o);
hos.close();
} catch (IOException e) {
return false;
}
return true;
}
示例15: write
import com.caucho.hessian.io.Hessian2Output; //导入方法依赖的package包/类
private static byte[] write(Object obj) throws Exception {
ByteArrayOutputStream outputStream=new ByteArrayOutputStream();
Hessian2Output output=new Hessian2Output(outputStream);
output.setSerializerFactory(SERIALIZER_FACTORY);
output.writeObject(obj);
output.flush();
return outputStream.toByteArray();
}