EntityUtils.toString进入IOException

时间:2014-11-26 13:25:34

标签: java rest http curl

在以下代码中,EntityUtils.toString进入IOException。当我粘贴' EntityUtils.toString(entity)'在eclipse观察窗口,它显示了DISABLED的值

private String triggerRestApiCalls(String url){
        HttpClient httpClient = new DefaultHttpClient();
        HttpGet getRequest = new HttpGet(url);
        getRequest.setHeader(
                new BasicHeader("Accept", "application/json"));
        try {
            HttpResponse response = httpClient.execute(getRequest);
            HttpEntity entity = response.getEntity();
            String value = EntityUtils.toString(entity);
            return value;

        } catch (ClientProtocolException e) {
            log.debug(e.getCause());
        } catch (IOException e) {
            log.debug(e.getCause());
        }
        log.debug("Status Unknown");
        return "UNKNOWN";
    }

内容值长度为8.预期的字符串为DISABLED,它与长度完全相同。 HTTP状态为200(OK)。

我使用了相同网址的curl。

curl -i   -H {Accept: application/json} http://127.0.0.1:9031/test/test.html?someDetails
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Set-Cookie: JSESSIONID=D35C61744F4FB3A47B624FF3D0BEB026; Path=/mics/; Secure; HttpOnly
Content-Type: text/plain;charset=ISO-8859-1
Content-Length: 8
Date: Wed, 26 Nov 2014 13:23:30 GMT

DISABLED。

任何帮助表示赞赏!编码是否有任何角度?

第一次编辑

Stack Trace提到了这一点。

java.io.IOException: Attempted read from closed stream.

由EntityUtils.toString()

执行的代码
  public static String toString(
            final HttpEntity entity, final Charset defaultCharset) throws IOException, ParseException {
        if (entity == null) {
            throw new IllegalArgumentException("HTTP entity may not be null");
        }
        InputStream instream = entity.getContent();
        if (instream == null) {
            return null;
        }
        try {
            if (entity.getContentLength() > Integer.MAX_VALUE) {
                throw new IllegalArgumentException("HTTP entity too large to be buffered in memory");
            }
            int i = (int)entity.getContentLength();
            if (i < 0) {
                i = 4096;
            }
            ContentType contentType = ContentType.getOrDefault(entity);
            Charset charset = contentType.getCharset();
            if (charset == null) {
                charset = defaultCharset;
            }
            if (charset == null) {
                charset = HTTP.DEF_CONTENT_CHARSET;
            }
            Reader reader = new InputStreamReader(instream, charset);
            CharArrayBuffer buffer = new CharArrayBuffer(i);
            char[] tmp = new char[1024];
            int l;
            while((l = reader.read(tmp)) != -1) {
                buffer.append(tmp, 0, l);
            }
            return buffer.toString();
        } finally {
            instream.close();
        }
    }

我已经完成了这个并且没有错误但是,它会在返回之前关闭流。 但是返回的实际值是CharArrayBuffer,它没有链接到流。相同的代码适用于其他一些java文件。奇怪!!我正在使用弹簧..这有弹簧角度吗?

1 个答案:

答案 0 :(得分:1)

HttpEntity只能读取一次,似乎还有其他东西正在拦截并读取响应,因此当您尝试应用EntityUtils.toString()时,您会收到此异常。我不明白为什么会发生这种情况,虽然你确实提到可能有一个Spring角度,所以可以在这里应用一个Spring拦截器。

你可以尝试

String value = httpClient.execute(getRequest, new BasicResponseHandler());

虽然我可以看到这应该与上面的代码相当。