我刚开始使用 android 编程,并通过使用 imdb api 找到了不错的教程。而不是在本教程中使用 xml 我想使用 json 并且对于收到的 json 我有一个问题。这是person.json:
[
{
"score":1,
"popularity":3,
"name":"Brad Pitt",
"id":287,
"biography":"test",
"url":"http://www.themoviedb.org/person/287",
"profile":[
{
"image":{
"type":"profile",
"size":"thumb",
"height":68,
"width":45,
"url":"http://d3gtl9l2a4fn1j.cloudfront.net/t/p/w45/w8zJQuN7tzlm6FY9mfGKihxp3Cb.jpg",
"id":"4ea5cb8c2c0588394800006f"
}
},
{
"image":{
"type":"profile",
"size":"profile",
"height":281,
"width":185,
"url":"http://d3gtl9l2a4fn1j.cloudfront.net/t/p/w185/w8zJQuN7tzlm6FY9mfGKihxp3Cb.jpg",
"id":"4ea5cb8c2c0588394800006f"
}
},
{
"image":{
"type":"profile",
"size":"h632",
"height":632,
"width":416,
"url":"http://d3gtl9l2a4fn1j.cloudfront.net/t/p/h632/w8zJQuN7tzlm6FY9mfGKihxp3Cb.jpg",
"id":"4ea5cb8c2c0588394800006f"
}
},
{
"image":{
"type":"profile",
"size":"original",
"height":1969,
"width":1295,
"url":"http://d3gtl9l2a4fn1j.cloudfront.net/t/p/original/w8zJQuN7tzlm6FY9mfGKihxp3Cb.jpg",
"id":"4ea5cb8c2c0588394800006f"
}
}
],
"version":685,
"last_modified_at":"2013-02-16 07:11:15 UTC"
}
]
我对他们的两个目标:
public class Person implements Serializable {
private static final long serialVersionUID = 6794898677027141412L;
public String score;
public String popularity;
public String name;
public String id;
public String biography;
public String url;
public String version;
public String lastModifiedAt;
public Profile profile;
}
public class Profile implements Serializable {
private static final long serialVersionUID = -8735669377345509929L;
public ArrayList<Image> imagesList;
}
public class Image implements Serializable {
private static final long serialVersionUID = -2428562977284114465L;
public String type;
public String url;
public String size;
public int width;
public int height;
}
我无法弄清楚如何使用杰克逊对象映射器检索人员列表。当我使用这个时:
ObjectMapper mapper = new ObjectMapper();
Person person= mapper.readValue(jsonResponseString, Person.class);
我有:
02-16 18:34:48.010: W/System.err(376): com.fasterxml.jackson.databind.JsonMappingException: 无法反序列化 com.example.imdbsearcher.model.Person 的实例出 START_ARRAY 令牌 02-16 18 :34:48.180: W/System.err(376): 在 [来源: java.io.StringReader@40a81778; 行:1,列:1] 02-16 18:34:48.554:W/System.err(376):在 com.fasterxml.jackson.databind.DeserializationContext.mappingException(DeserializationContext.java:599) 02-16 18: 34:48.830:W/System.err(376):在 com.fasterxml.jackson.databind.DeserializationContext.mappingException(DeserializationContext.java:593)
我已经根据 Keith 和 crdnilfan 的建议更改了检索方法。但现在我对配置文件的属性有疑问。
我意识到我错过了那个人对象,基本上我已经创建了新的配置文件对象并将 imageList 移动到这个类。
我已经如上所述更新了 POJO。
但现在我在配置文件中遇到了同样的错误。
无法从 START_ARRAY 令牌中反序列化 com.example.imdbsearcher.model.Profile 的实例