2015-11-04 65 views
-2

如何解析遞歸像Gson一樣的JSON字符串如下所示?任何意見,將不勝感激,thx。使用Gson解析遞歸JSON字符串

enter image description here

+0

GSON API列表https://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/com/google/類gson/Gson.html – rajuGT

+0

JSON字符串有點特別,孩子「listCity」數組的關鍵與父類相同,有點像遞歸結構。 – Xiaozou

回答

0

你可以使用它裏面

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