高性能的 JSON 处理 Jackson
- 授权协议: Apache
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: https://github.com/FasterXML/jackson-core/
- 软件文档: http://wiki.fasterxml.com/JacksonHome
- 官方下载: http://wiki.fasterxml.com/JacksonDownload
软件介绍
Jackson 是一个 Java 的用来处理 JSON 格式数据的类库,性能非常好。
示例:
{
: { : , : },
: ,
: ,
:
} class User {
Gender { MALE, FEMALE };
class Name {
_first, _last;
getFirst() { _first; }
getLast() { _last; }
void setFirst( s) { _first = s; }
void setLast( s) { _last = s; }
}
Gender _gender;
Name _name;
_isVerified;
[] _userImage;
Name getName() { _name; }
isVerified() { _isVerified; }
Gender getGender() { _gender; }
[] getUserImage() { _userImage; }
void setName(Name n) { _name = n; }
void setVerified( b) { _isVerified = b; }
void setGender(Gender g) { _gender = g; }
void setUserImage([] b) { _userImage = b; }
}ObjectMapper mapper = ObjectMapper(); User user = mapper.readValue( File(), User.class);
从上面例子可看到,使用也是非常的方便。
jQuery实战
Bear Bibeault、Yehuda Katz / 陈宁 / 人民邮电出版社 / 2009.1 / 49.00元
《jQuery实战》全面介绍jQuery知识,展示如何遍历HTML文档、处理事件、执行动画以及给网页添加Ajax。书中紧紧地围绕“用实际的示例来解释每一个新概念”这一宗旨,生动描述了jQuery如何与其他工具和框架交互以及如何生成jQuery插件。jQuery 是目前最受欢迎的JavaScript/Ajax库之一,能用最少的代码实现最多的功能。 点击链接进入新版: jQuery......一起来看看 《jQuery实战》 这本书的介绍吧!
