拜托,我有这个Response
,我想将内容提取为String
Response res = Response.status(Response.Status.OK)
.entity(new GenericEntity<MongoType>(app) {
}).type(MediaType.APPLICATION_XML_TYPE).build();
我怎样才能做到这一点 ?
我正在使用javax.ws.rs.core
图书馆
我正在尝试res.getEntity(String.class);
,但它不接受String.class
他们的参数。