Android解析json對(duì)象和json數(shù)組
json數(shù)據(jù)格式解析可以分為兩種:
一種是普通的對(duì)象(比如:modelinfo)
一種是帶有數(shù)組形式的List<modelinfo>列表形式的
下面我們分別來(lái)看下對(duì)象形式的和數(shù)組形式的Json是如何進(jìn)行解析的
Json解析說(shuō)明:
普通的對(duì)象形式的只需用JSONObject ,帶數(shù)組形式的需要使用JSONArray 將其變成一個(gè)List
1,普通對(duì)象格式的Json對(duì)象解析
定義測(cè)試json數(shù)據(jù)
{"userbean":{"Uid":"19908","Showname":"好用的Android解析Json數(shù)據(jù)","Avtar":"Json解析對(duì)象","State":0}}分析代碼如下:
// TODO 狀態(tài)處理 500 200 int res = 0; res = httpClient.execute(httpPost).getStatusLine().getStatusCode(); if (res == 200) { /* * 當(dāng)返回碼為200時(shí),做處理 * 得到服務(wù)器端返回json數(shù)據(jù),并做處理 www.hnxxbl.cn * */ HttpResponse httpResponse = httpClient.execute(httpPost); StringBuilder builder = new StringBuilder(); BufferedReader bufferedReader2 = new BufferedReader( new InputStreamReader(httpResponse.getEntity().getContent())); String str2 = ""; for (String s = bufferedReader2.readLine(); s != null; s = bufferedReader2 .readLine()) { builder.append(s); } Log.i("cat", ">>>>>>" builder.toString()); JSONObject jsonObject = new JSONObject(builder.toString()) .getJSONObject("userbean"); String Uid; String Showname; String Avtar; String State; Uid = jsonObject.getString("Uid"); Showname = jsonObject.getString("Showname"); Avtar = jsonObject.getString("Avtar"); State = jsonObject.getString("State");
2,帶數(shù)組列表形式的Json數(shù)組解析
定義測(cè)試使用的json數(shù)據(jù)
{ "calendar": { "calendarlist": [ { "calendar_id": "1996", "title": "Android解析Json", "category_name": "安卓", "showtime": "2016.3.31", "endshowtime": "2016.3.31", "allDay": true }, { "calendar_id": "1998", "title": "解析", "category_name": "Android", "showtime": "2016.3.31", "endshowtime": "2016.3.31", "allDay": true } ] } }
分析代碼如下:
// TODO 狀態(tài)處理 500 200 int res = 0; res = httpClient.execute(httpPost).getStatusLine().getStatusCode(); if (res == 200) { //當(dāng)返回碼為200時(shí),做處理得到服務(wù)器端返回json數(shù)據(jù),并做處理 www.hnxxbl.cn HttpResponse httpResponse = httpClient.execute(httpPost); StringBuilder builder = new StringBuilder(); BufferedReader bufferedReader2 = new BufferedReader( new InputStreamReader(httpResponse.getEntity().getContent())); String str2 = ""; for (String s = bufferedReader2.readLine(); s != null; s = bufferedReader2 .readLine()) { builder.append(s); } Log.i("cat", ">>>>>>" builder.toString()); //這里需要分析服務(wù)器回傳的json格式數(shù)據(jù) JSONObject jsonObject = new JSONObject(builder.toString()).getJSONObject("calendar"); JSONArray jsonArray = jsonObject.getJSONArray("calendarlist"); for(int i=0;i<jsonArray.length();i ){ JSONObject jsonObject2 = (JSONObject)jsonArray.opt(i); CalendarInfo calendarInfo = new CalendarInfo(); calendarInfo.setCalendar_id(jsonObject2.getString("calendar_id")); calendarInfo.setTitle(jsonObject2.getString("title")); calendarInfo.setCategory_name(jsonObject2.getString("category_name")); calendarInfo.setShowtime(jsonObject2.getString("showtime")); calendarInfo.setEndtime(jsonObject2.getString("endshowtime")); calendarInfo.setAllDay(jsonObject2.getBoolean("allDay")); calendarInfos.add(calendarInfo); }
原文鏈接:Android解析json對(duì)象和json數(shù)組