protostuff不能序列化HashMap?

使用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"));


慕运维8079593
浏览 877回答 2
2回答

明月笑刀无情

可以使用MessageMapSchema
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java