我花了一些时间谷歌搜索试图弄清楚如何将这个json反序列化为List<Link>
。我知道它是List<Map<String, Link>>
。所以我想知道是否有人知道是否有可能这样做。
public class Link {
private String type;
private String url;
}
"links": [
{
"link": {
"type": "category",
"url": "http://compa...."
}
}, {
"link": {
"type": "xml",
"url": "http://san..."
}
}
],