使用Gson解析递归JSON字符串

时间:2015-11-04 09:04:17

标签: java json gson

如何使用Gson解析下面的递归 JSON字符串?任何建议都将受到赞赏,thx。

enter image description here

1 个答案:

答案 0 :(得分:1)

你可以在里面使用课程

public class City {
    String areaId;
    String areaName;
    // other fields here
    List<City> listCity;
}
...
List<City> data;