Fastjson是一个Java语言编写的高性能功能完善的JSON库。它采用一种“假定有序快速匹配”的算法,把JSON Parse的性能提升到极致,是目前Java语言中最快的JSON库。Fastjson接口简单易用,已经被广泛使用在缓存序列化、协议交互、Web输出、Android客户端等多种应用场景。
https://github.com/alibaba/fastjson/wiki/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98
或者通过Maven:
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>VERSION_CODE</version>
</dependency>
或者通过 Gradle:
compile 'com.alibaba:fastjson:VERSION_CODE'
用 这里 或者 这里 或者 这里 的真实发行版本号, 替换 VERSION_CODE
, 例如 1.2.37
示例如下 : https://github.com/alibaba/fastjson/wiki/Samples-DataBind
你可以从这里了解如何更好的使用JSON:https://github.com/darcyliu/google-styleguide/blob/master/JSONStyleGuide.md
https://github.com/alibaba/fastjson/wiki/%E5%9C%A8-Spring-%E4%B8%AD%E9%9B%86%E6%88%90-Fastjson
https://github.com/alibaba/fastjson/wiki/Integrate-Fastjson-in-JAXRS
https://github.com/alibaba/fastjson/wiki/Use-Fastjson-in-Kotlin
扫一扫
在手机上阅读