以下JSON以数组类型开头,我对Parse有很多问题。请帮忙。
[{ “类型”: “1”, “名称”: “ABC”, “起始日期”: “5”, “END_DATE”:NULL, “时间”: “00:00:00”, “说明” : “ABC”, “地点”: “”, “v_id”: “1”, “c1name”: “”, “c1phno”: “”, “c1email”: “”, “c2name”: “”,“c2phno “:””, “c2email”: “”}]
请尽可能帮助我。
答案 0 :(得分:1)
您是否尝试将数据作为JSONArray获取?
看起来像这样:
String json = "your json data";
JSONArray jsonArray = new JSONArray(json);
JSONObject jsonObject = jsonArray.getJSONObject(0);
String type = jsonObject.getString("type");
String name = jsonObject.getString("name");
等等......