为了账号安全,请及时绑定邮箱和手机立即绑定

protostuff不能序列化HashMap?

protostuff不能序列化HashMap?

慕运维8079593 2019-03-13 18:19:12
使用protostuff系列化自定义对象时正常解析,但是使用HashMap却得不到反序列化的对象。HashMap<String,String> map = new HashMap<>();        map.put("Message","test");        Schema<HashMap> schema = RuntimeSchema.getSchema(HashMap.class);        LinkedBuffer buffer = LinkedBuffer.allocate(4096);        byte[] protostuff = ProtostuffIOUtil.toByteArray(map, schema, buffer);        HashMap<String,String> resultMap = new HashMap<>();        Schema<HashMap> schema2 = RuntimeSchema.getSchema(HashMap.class);        ProtostuffIOUtil.mergeFrom(protostuff, resultMap, schema2);        System.out.println(resultMap.get("Message"));
查看完整描述

2 回答

?
明月笑刀无情

TA贡献1828条经验 获得超4个赞

可以使用MessageMapSchema


查看完整回答
反对 回复 2019-04-24
  • 2 回答
  • 0 关注
  • 876 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信