到目前为止,这是我的代码:
public ArrayList<Person> getGames() {
WebTarget target = webTarget.path("some/path");
Invocation.Builder invocationBuilder = target.request(MediaType.APPLICATION_JSON);
// add authentication cookie to get request
Response response = invocationBuilder.cookie(this.cookie).get();
int status = response.getStatus();
if (status == 200) { // everything ok
// response has wrong MediaType (text/plain from server side)
// this sets the right MediaType so Jackson (Json deserialization) will handle it
response.getHeaders().putSingle(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_JSON);
// How do I do this?
ArrayList<Person> list = response.readEntity(???);
return list;
} else {
return new ArrayList<GameInfo>(); // FIXME: This may throw an exception
}
}
我知道如何反序列化单个JSON对象:
Person person = response.readEntity(Person.class);
并且内部完成(我认为杰克逊)。
我的问题是,我在表单中获得了一个JSON:
[{"name":"name","age":"age","lives":{"street":"myStreet"}}, .... ]
我认为在某种程度上可以毫不费力地做到这一点,但是我找不到任何不使用过时版本的Jersey的例子。在文档中,我找不到一个关于数组反序列化的段落。
我感谢任何形式的帮助:)
答案 0 :(得分:0)
回答我自己的问题:
https://www.reddit.com/r/javahelp/comments/7qkvjm/how_to_parse_json_array_with_2_or_more_different/
非常感谢webdevnick22。
Person[] persons = response.readEntity(Person[].class);
是你所要做的,一个简单但很难找到的答案。