我正在尝试将一些从 Web API 获得的 JSON 解析为 Java 对象并且遇到了一些问题。
这是JSON:
{
"d":{
"results":[
{
"__metadata" { some metadata I'm not interested in },
"attribute1":"attribute id 1",
"attribute2:"attribute value 1"
},
{
"__metadata" { some metadata I'm not interested in },
"attribute1":"attribute id 2",
"attribute2:"attribute value 2"
}
]
}
}
现在我想将以下数据映射到 Java 类,以便结果是 Catalog 对象,结果数组中的值是 CatalogEntry 对象:
public class Catalog {
private final List<CatalogEntry> values;
public Catalog() {
values = null;
}
public Catalog(@JsonProperty("results") List<CatalogEntry> values) {
super();
this.values = values;
}
}
public class CatalogEntry {
private String attribute1;
private String attribute2;
public CatalogEntry() {}
public CatalogEntry(@JsonProperty("attribute1") String attribute1,
@JsonProperty("attribute2") String attribute2) {
this.attribute1 = attribute1;
this.attribute2 = attribute2;
}
}
通过以下行,我尝试将 JSON 字符串反序列化为 Catalog 对象:
Catalog catalog = genson.deserialize(json, Catalog.class);
之后,我尝试获取 Catalog 对象中的值,但得到 NullPointerException,因为它似乎是空的。我认为反序列化对 JSON 中的“d”对象有问题,但我该如何解决呢?任何帮助,将不胜感激。