1.常用的json解析:
JSONArrayjsonArray=newJSONArray(result);
for(inti=0;i<jsonArray.length();i++){
JSONObjectjsonObject=jsonArray.getJSONObject(i);
Appapp=newApp();
app.setId(jsonObject.getInt("id"));
app.setName(jsonObject.getString("name"));
app.setVersion(jsonObject.getString("version"));
list.add(app);}
2.使用GSON库:可以使json解析变得无比简单
a)解析一般json字符串:
Gsongson=newGson();
Personperson=gson.fromJson(jsonData,Person.class);
b)解析json数组:
List<Person>list=gson.fromJson(jsonData,newTypeToken<List<Person>>(){}.getType());
原文链接:https://www.f2er.com/json/289867.html