- 授权协议: GPL
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: https://github.com/zhang-rf/airy
- 软件文档: https://github.com/zhang-rf/airy/blob/master/README.md
软件介绍
Airy 是一个简单、快速、高效、零依赖的序列化框架。
安装
Airy 可从 releases page 获取。
Quickstart 快速上手
Airy airy = new Airy(); byte[] data = airy.serialize(someBean); SomeBean object = (SomeBean) airy.deserialize(data); // or airy.deserialize(data, SomeBean.class);
是不是很简单?接下来将详细介绍框架的一些细节和高级用法。
高级用法
Airy airy = new Airy(new OrderSerializer()); // use OrderSerializer instead of HashSerializer airy.registerClass(SomeBean.class); // register class to reduce the size of the serialized data airy.appendHandler(someHander); // append your owner handler byte[] data = airy.serialize(someBean); SomeBean object = (SomeBean) airy.deserialize(data); // or airy.deserialize(data, SomeBean.class);
Persuasive Technology
B.J. Fogg / Morgan Kaufmann / 2002-12 / USD 39.95
Can computers change what you think and do? Can they motivate you to stop smoking, persuade you to buy insurance, or convince you to join the Army? "Yes, they can," says Dr. B.J. Fogg, directo......一起来看看 《Persuasive Technology》 这本书的介绍吧!
