在下面的代码中,EntityUtils.toString进入IOException。当我在Eclipse监视窗口上粘贴“ EntityUtils.toString(entity)”时,它向我显示了已禁用的值

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(确定)。

我使用了带有相同URL的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


已停用。

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

第一次编辑

堆栈跟踪提到了这一点。

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文件中使用。奇怪!我正在使用弹簧..对此有弹簧角度吗?

最佳答案

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

你可以试试

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


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

10-06 04:55