json資料解析(gson)

2021-08-07 07:28:35 字數 480 閱讀 2270

string json = "";

type type = new typetoken>(){}.gettype();

@suppresswarnings("unchecked")

mapdata = (map)new gson().fromjson(json, type);

iterator> iterator = data.entryset().iterator();

while (iterator.hasnext())

其中,json字串是請求伺服器之後返回的字串,由於請求返回的json資料中的key和value都是需要的資料,所以採用gson才進行解析,轉化成map,最後遍歷map即可得到所要的資料。

解析成功的資料後台列印的資料如下:

Gson解析json資料

1 解析單個物件 json字串如下 封裝解析的物件 public class nbamatchs public void setformatdate string formatdate public string getdate public void setdate string date pub...

Gson解析json資料

使用gson解析json資料 1.當json資料是jsonobject時對應大括號 2.當json資料是jsonarray時對應中括號 person name xiaoming,age 1,address meiguo,colorstring null,height 0 person name xi...

Gson解析json資料

1 解析單個物件 json字串如下 封裝解析的物件 public class nbamatchs public void setformatdate string formatdate public string getdate public void setdate string date pub...