如何使用 Unirest 获取 Java 的对象列表?
How can I get a List of objects using Unirest for Java?
我可以使用 Unirest 来获得我自己的对象 class 像这样:
HttpResponse<Item> itemResponse = Unirest.get("http://localhost:8080/item").asObject(Item.class);
我还可以将类型参数设置为 List
,这确实为我提供了哈希映射列表,但我想改为获取项目列表。这可能吗?
不知道您是否还在等待答案,但您应该使用数组。
像这样;
HttpResponse<Item[]> itemResponse = Unirest.get("http://localhost:8080/item").asObject(Item[].class);
除了@scuro 的回答,您还可以从这样的响应中获取对象列表:
List<Item> items = Unirest.get("http://localhost:8080/item")
.asObject(new GenericType<List<Item>>(){})
.getBody();
我可以使用 Unirest 来获得我自己的对象 class 像这样:
HttpResponse<Item> itemResponse = Unirest.get("http://localhost:8080/item").asObject(Item.class);
我还可以将类型参数设置为 List
,这确实为我提供了哈希映射列表,但我想改为获取项目列表。这可能吗?
不知道您是否还在等待答案,但您应该使用数组。 像这样;
HttpResponse<Item[]> itemResponse = Unirest.get("http://localhost:8080/item").asObject(Item[].class);
除了@scuro 的回答,您还可以从这样的响应中获取对象列表:
List<Item> items = Unirest.get("http://localhost:8080/item")
.asObject(new GenericType<List<Item>>(){})
.getBody();