我正在使用 jersey 客户端将文件发布到以 JSON 形式返回响应的 REST URI。我的要求是将响应作为(JSON)读取到字符串。
这是将数据发布到 Web 服务的一段代码。
final ClientResponse clientResp = resource.type(
MediaType.MULTIPART_FORM_DATA_TYPE).
accept(MediaType.APPLICATION_JSON).
post(ClientResponse.class, inputData);
System.out.println("Response from news Rest Resource : " + clientResp.getEntity(String.class)); // This doesnt work.Displays nothing.
clientResp.getLength()
有 281 个字节,这是响应的大小,但clientResp.getEntity(String.class)
什么也不返回。
有什么想法在这里可能不正确吗?