Attempted read from closed stream.

7836 단어 HttpClient
최근 프로젝트에서 HttpClient를 사용했습니다. 코드는 다음과 같습니다. get을 사용했습니다.
  public static String  get() throws IOException, InterruptedException {
        CloseableHttpClient httpclient = HttpClients.createDefault();
        HttpEntity entity = null;
        try {
            //   httpget.
            HttpGet httpget = new HttpGet("http://127.0.0.1:2333/personal-api/api/personal/signn/personss?phone=11111111&name=hxy")
            httpget.setHeader("User-Agent","Mozilla/5.0");
            httpget.setHeader("Content-Type","application/json");
            System.out.println("executing request " + httpget.getURI());
            //   get  .
            CloseableHttpResponse response = httpclient.execute(httpget);
            try {
                //       
                 entity = response.getEntity();
                System.out.println("--------------------------------------");
                //       
                System.out.println(response.getStatusLine());
                if (entity != null) {
                    //         
                    System.out.println("Response content length: " + entity.getContentLength()); 
                    //       
                    System.out.println("Response content: " + EntityUtils.toString(entity)); //        ,     
                }
                System.out.println("------------------------------------");
                return EntityUtils.toString(entity); //     
            } finally {
                response.close();
            }
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            //     ,    
            try {
               httpclient.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return null;
    } 
 //main   :
    public static void main(String[] args) throws InterruptedException, IOException {
        String s1 = get();
        System.out.println("    : "+s1);//       
    }

main 메서드를 실행하면 다음 예외가 발생합니다.
java.io.IOException: Attempted read from closed stream.
 at org.apache.http.impl.io.ContentLengthInputStream.read(ContentLengthInputStream.java:165)
 at org.apache.http.conn.EofSensorInputStream.read(EofSensorInputStream.java:135)
 at sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:284)
 at sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:326)
 at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:178)
 at java.io.InputStreamReader.read(InputStreamReader.java:184)
 at java.io.Reader.read(Reader.java:140)
 at org.apache.http.util.EntityUtils.toString(EntityUtils.java:225)
 at org.apache.http.util.EntityUtils.toString(EntityUtils.java:306)
 at cc.huluwa.windowmain.config.TestHttpClients.get(TestHttpClients.java:105)
 at cc.huluwa.windowmain.config.TestHttpClients.main(TestHttpClients.java:73)

EntityUtils 때문에 오류가 발생했습니다.toString(entity);이 문장은 뒤에 쓰기 파일 오류를 초래했다.entity에서 얻은 흐름은 중복 읽을 수 없습니다. 즉, 얻은 것을 실체로 한 번에 소모할 수 있고 여러 번 읽을 수 없기 때문에 Entity Utils를 실행합니다.string (entity) 후, 흐름이 닫혀서, 뒤의 읽기와 쓰기 오류가 발생합니다.해결 방법: System.out.println(“Response content: ” + EntityUtils.toString(entity));이 말은 주석을 달고 콘솔에 인쇄하지 마라

좋은 웹페이지 즐겨찾기