Kryo 正在参加 2021 年度 OSC 中国开源项目评选,请投票支持!
Kryo 在 2021 年度 OSC 中国开源项目评选 中已获得 {{ projectVoteCount }} 票,请投票支持!
2021 年度 OSC 中国开源项目评选 正在火热进行中,快来投票支持你喜欢的开源项目!
2021 年度 OSC 中国开源项目评选 >>> 中场回顾
Kryo 获得 2021 年度 OSC 中国开源项目评选「最佳人气项目」 !
授权协议 BSD
开发语言 Java
操作系统 跨平台
软件类型 开源软件
所属分类 程序开发常用工具包
开源组织
地区 不详
投 递 者 老盖
适用人群 未知
收录时间 2010-08-16

软件简介

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

展开阅读全文

代码

的 Gitee 指数为
超过 的项目

评论

点击加入讨论🔥(11) 发布并加入讨论🔥
发表了资讯
2015/06/24 00:00

Kryo 3.0.2 发布,高性能 Java 序列化器

Kryo 3.0.2 发布,更新内容如下: Fixed issue #314, improves serialisation of generics. (4764dee) Build improvements, for java 8 Docs improvements Compatibility Serialization compatible Standard IO: Yes Unsafe-based IO: Yes Binary compatible - Yes (Details) Source compatible - Yes (Details) 更多内容请查看更新日志。 该版本下载:kryo-3.0.2-all.zip Kryo 是一个快速高效的Java对象图形序列化框架,主要特...

5
26
发表了资讯
2015/03/24 00:00

Kryo 3.0.1 发布,高性能 Java 序列化器

Kryo 3.0.1 在 3月24日发布了,改进记录包括: Update reflectasm to 1.10.1 with java 8 support (a2c0699) Warning about use when references are enabled. (7e67a1f) Fix #286 CompatibleFieldSerializer fails with IndexOutOfBoundsException on field removal: Add compatible option for VersionFieldSerializer (907c58b) Removed auto registration of Java8 closures. (1c5562d) Changed to no longer use StdInsta...

0
2
发表了资讯
2014/10/02 00:00

Kryo 3.0 发布,高性能的 Java 序列化库

高性能的 Java 序列化库 —— Kryo 发布了全新的 3.0 版本,新版本改进内容包括: Fixed #248. There was a bug in the buffer resizing code. (23830f6) end() for deflater and inflater. (a306471) Fixed DeflateSerializer. (86aecf1) BigIntegerSerializer, BigDecimalSerializer, TreeMapSerializer and TreeSetSerializer optimizations and enhacements (2d6204d): Proper handle of subclasses (Fix #166) Small optim...

3
39
发表了资讯
2014/02/11 00:00

Kryo 2.23 发布,高性能 Java 序列化库

Kryo 2.23 发布了,该版本主要是 bug 修复,包括: Fix #183 Problem with inner classes of a generic class (f9cb9ea) Fix #176 Remove unused "kryo" fields from a number of classes. (77e319f) Fix #168 Infinite loop while extending buffer (82d134d) Fix #100 Serialization for java.util.Locale under java 1.7 is broken Fix #88 Serialization of java.sql.Timestamp Fix #161 Option for ByteBufferOutput#requ...

6
25
发表了资讯
2013/03/04 00:00

Kryo 2.21 发布,高性能 Java 序列化器

Kryo 2.21 发布了,下载地址: kryo-2.21.zip (1.7 MB) 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 FileInp...

4
35
没有更多内容
加载失败,请刷新页面
点击加载更多
加载中
下一页
发表了博客
{{o.pubDate | formatDate}}

{{formatAllHtml(o.title)}}

{{parseInt(o.replyCount) | bigNumberTransform}}
{{parseInt(o.viewCount) | bigNumberTransform}}
没有更多内容
暂无内容
发表了问答
{{o.pubDate | formatDate}}

{{formatAllHtml(o.title)}}

{{parseInt(o.replyCount) | bigNumberTransform}}
{{parseInt(o.viewCount) | bigNumberTransform}}
没有更多内容
暂无内容
暂无内容
11 评论
300 收藏
分享
OSCHINA
登录后可查看更多优质内容
返回顶部
顶部