美文网首页
hessian2序列化

hessian2序列化

作者: 籽肥魚 | 来源:发表于2018-01-25 10:33 被阅读0次

    ByteArrayOutputStream os = new ByteArrayOutputStream();

    Hessian2Output ho = new Hessian2Output(os);

    ho.writeObject(m);

    ho.getBytesOutputStream().flush();

    ho.completeMessage(); 

    ho.close();

    byte[] bs =  os.toByteArray();

    System.out.println(bs.length);

    相关文章

      网友评论

          本文标题:hessian2序列化

          本文链接:https://www.haomeiwen.com/subject/jenmaxtx.html