我正在尝试使用kryo序列化和反序列化 java 集合。
序列化方法如下所示:
public <T> byte[] serialize(List<T> objectsToSerialize) {
CollectionSerializer cs = new CollectionSerializer();
Output output = new Output();
cs.write(kryo, output, objectsToSerialize);
return output.toBytes();
}
现在我想编写反序列化方法,但这样做有困难。基本上 CollectionSerializer 有一个 read 方法,但我不明白如何使用它(据我所知,文档很差)。
有任何想法吗?