heyu327999487

好好学习 天天向上

  博客园 :: :: 博问 :: 闪存 :: 新随笔 :: 联系 :: :: 管理 ::
//解析单数据类型 private void parseJSONWithJSONObject(String jsonData) { try { JSONObject jsonObject = new JSONObject(jsonData); String id = jsonObject.getString("id"); String version = jsonObject.getString("version"); String name = jsonObject.getString("name"); textView.setText(id + " " + version + " " + name); } catch (JSONException e) { e.printStackTrace(); } } //解析复合数据类型 private void parseJSONObjectOrJSONArray(String jsonData) { try { String count = ""; JSONObject jsonObject = new JSONObject(jsonData); JSONArray jsonArray = jsonObject.getJSONArray("list"); for (int i = 0; i < jsonArray.length(); i++) { JSONObject jsonObject1 = jsonArray.getJSONObject(i); String id = jsonObject.getString("id"); String version = jsonObject.getString("version"); String name = jsonObject.getString("name"); count = id + " " + version + " " + name; } textView.setText(count); } catch (JSONException e) { e.printStackTrace(); } }
posted on 2016-07-30 11:05  heyu327999487  阅读(558)  评论(0编辑  收藏  举报