您好,登錄后才能下訂單哦!
這篇文章主要講解了“CloseableHttpClient出現Premature end of Content-Length delimited message body怎么解決”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“CloseableHttpClient出現Premature end of Content-Length delimited message body怎么解決”吧!
一、問題描述
今天在用CloseableHttpClient請求服務器獲取圖片流,獲取之后轉換成字節數組,出現以下異常:
原代碼如下:
public static byte[] getPic(String urlPath){ try { InputStream inStream=null; /** * *方法二 HttpClient*/ CloseableHttpClient client= HttpClients.createDefault(); HttpGet method=new HttpGet(urlPath);//獲取內容用GetMethod,經過測試PostMethod拿不到圖片的內容 // RequestConfig requestConfig = RequestConfig.custom().setConnectTimeout(DEFAULT_CONNECT_TIMEOUT) // .setConnectionRequestTimeout(DEFAULT_CONNECTION_REQUEST_TIMEOUT) // .setSocketTimeout(DEFAULT_SOCKET_TIMEOUT).build(); // method.setConfig(requestConfig); CloseableHttpResponse response = client.execute(method); if(response.getStatusLine().getStatusCode() == HttpStatus.SC_OK){ byte[] btImg = EntityUtils.toByteArray(response.getEntity()); return btImg; }else{ log.error("網絡異常"); } } catch (Exception e) { log.error("下載失敗"); e.printStackTrace(); } return null; } private static byte[] readStream(InputStream inStream) throws IOException { byte[] b = new byte[1024]; ByteArrayOutputStream os = new ByteArrayOutputStream(); int l = -1; while((l = inStream.read(b)) > -1){ os.write(b, 0, l);; } os.flush(); b = os.toByteArray(); os.close(); return b; }
二、解決問題
后來將CloseableHttpClient替換成了低版本的HttpClient,問題就解決了,暫時還不知道原因。
修改后的代碼如下:
public static byte[] getPic(String urlPath){ try { InputStream inStream=null; /** * *方法二 HttpClient*/ HttpClient client=new HttpClient(); GetMethod method = new GetMethod(urlPath);//獲取內容用GetMethod,經過測試PostMethod拿不到圖片的內容 int status=client.executeMethod(method); method.getParams().setParameter(HttpMethodParams.HTTP_CONTENT_CHARSET,"utf-8"); //設置編碼 if(status==HttpStatus.SC_OK){ inStream=method.getResponseBodyAsStream(); //long a=System.currentTimeMillis(); byte[] btImg = readStream(inStream);//得到圖片的二進制數據 //long b=System.currentTimeMillis(); //System.out.println("轉化為流耗時:"+(b-a)); return btImg; }else{ log.error("網絡異常"); } } catch (Exception e) { log.error("下載失敗"); e.printStackTrace(); } return null; } private static byte[] readStream(InputStream inStream) throws IOException { byte[] b = new byte[1024]; ByteArrayOutputStream os = new ByteArrayOutputStream(); int l = -1; while((l = inStream.read(b)) > -1){ os.write(b, 0, l);; } os.flush(); b = os.toByteArray(); os.close(); return b; }
感謝各位的閱讀,以上就是“CloseableHttpClient出現Premature end of Content-Length delimited message body怎么解決”的內容了,經過本文的學習后,相信大家對CloseableHttpClient出現Premature end of Content-Length delimited message body怎么解決這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。