这是我的一个例子:JSON
{
"status": "ok",
"rowCount": 60,
"pageCount": 6,
"value": [{
"CustomerID": 1911,
"CustomerTypeID": 3,
...
}
]
}
我的手机:
@SerializedName("CustomerID")
public Integer CustomerID;
@SerializedName("CustomerTypeID")
public Integer CustomerTypeID;
我想把所有东西都拉到下面。value
如何使用谷歌的GSON来做到这一点?
我已经尝试像往常一样这样做,但由于显而易见的原因,它不起作用:
Type collectionType = new TypeToken<ArrayList<Customer>>() {}.getType();
return gson.fromJson(json, collectionType);
回首忆惘然
慕田峪7331174
忽然笑
相关分类