请,我有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
。
答案 0 :(得分:2)
请尝试以下代码(readEntity
代替getEntity
)
String resAsString= res.readEntity(String.class);