我正在尝试使用gson反序列化JSON,但是我的输出结果为空。
Data.Sequence
结果列表仅为class Term {
// Actual documentation uses private, didn't work for me either
public String uuid;
public void setUuid(String uuid){
this.uuid = uuid;
}
public String getUuid() {
return this.uuid;
}
}
Type collectionType = new TypeToken<List<Term>>(){}.getType();
Gson gson = new Gson();
String json = "[{\"uuid\": \"aaaa\"}]";
List<Term> terms = gson.fromJson(json, collectionType);
。期望某些<[null]>
对象已设置Term
。
对我可能在这里做错的任何想法吗?