Android中使用Fastjson

之前学习了使用Gson进行反序列化,今天来学号称速度最快的Fastjson

Fastjson Github地址

Gradle依赖

Fastjson提供了两种版本:标准版本,Android版本,所以添加Gradle依赖也有所不同
两个版本区别可以查看文档

# 标准版
compile 'com.alibaba:fastjson:1.2.55'
# android版
compile 'com.alibaba:fastjson:1.1.70.android'

先码https://segmentfault.com/a/1190000011212806

你可能感兴趣的:(Android从入门到放弃)