0
的json:Android解析此JSON - 如何?
[
{
"all": {
"dates": [
{
"date": "2011-01-18",
"name": "asd"
},
{
"date": "2011-02-19",
"name": "ddd"
},
{
"date": "2011-11-21",
"name": "eee"
}
],
"dep": [
{
"code": "BBB",
"name": "BUD"
}
],
"citys": [
{
"id": "2163",
"name": "ASD"
},
{
"id": "2369",
"name": "EFG"
},
...
我的代碼
JSONArray json = new JSONArray(s); //json string
for(int i=0;i<json.length();i++){
String settings = json.getJSONObject(i).getString("all");
JSONArray jsonarray = new JSONArray(settings);
for (int j=0; j<jsonarray.length();j++){
String dates = jsonarray.getJSONObject(j).getString("dates");
JSONArray jsonarray2 = new JSONArray(dates);
for (int k=0; k<jsonarray2.length();k++){
String date = jsonarray2.getJSONObject(k).getString("date");
Log.e("date", date);
}
..
。
九月7日至19日:52:31.356:ERROR/EX(19038):org.json.JSONException:值 { 「城市的」:[{ 「ID」: 「2163」,「...
如何可以解析該文件是否正確?
謝謝,萊斯利
實現正要編輯:) – KaKa
您可以發佈的所有代碼?謝謝 – lacas
對不起,太忙了,希望你找到了錯誤,並可以自己做 – KaKa