簡體   English   中英

使用 Gson 解析遞歸 JSON 字符串

[英]Parsing recursive JSON strings with Gson

如何使用 Gson 解析像下面這樣的遞歸JSON 字符串? 任何建議將不勝感激,謝謝。

在此處輸入圖片說明

你可以在里面使用 class

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

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM