文件名称:Java对象序列化框架Kryo.zip
文件大小:3.86MB
文件格式:ZIP
更新时间:2022-08-05 22:09:49
开源项目
Kryo 是一个快速高效的Java对象图形序列化框架,主要特点是性能、高效和易用。该项目用来序列化对象到文件、数据库或者网络。示例代码:Kryo kryo = new Kryo(); // ... Output output = new Output(new FileOutputStream("file.bin")); SomeClass someObject = ... kryo.writeObject(output, someObject); output.close(); // ... Input input = new Input(new FileInputStream("file.bin")); SomeClass someObject = kryo.readObject(input, SomeClass.class); input.close();API文档:http://tool.oschina.net/apidocs/apidoc?api=kyro-2.21 标签:Kryo