Android Gson的使用总结
1、概念 Gson是谷歌发布的一个json解析框架 2、如何获取 github:https://github.com/google/gson android studio使用 compile 'com.google.code.gson:gson:2.7' 查看最新版本号 下载最新的jar包 ,http://search.maven.org/#search%7Cga%7C1%7Ccom.google.code.gson 3、基于Gson封装的简单工具类JsonUtil package com.zyj.app.util; import com.google.gson.Gson; import com.google.gson.JsonArray; import com.google.gson.JsonElement; import com.google.gson.JsonParser; import java.util.ArrayList; import java.util.List; /** * Created by ${zyj} on 2016/8/24. */ publ...