【发布时间】:2015-11-04 09:04:17
【问题描述】:
【问题讨论】:
-
JSON字符串有点特殊,子"listCity"数组的key和父数组一样,有点像递归结构。
【问题讨论】:
你可以在里面使用类
public class City {
String areaId;
String areaName;
// other fields here
List<City> listCity;
}
...
List<City> data;
【讨论】: