91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

CloseableHttpClient出現Premature end of Content-Length delimited message body怎么解決

發布時間:2021-06-22 15:23:21 來源:億速云 閱讀:1149 作者:chen 欄目:編程語言

這篇文章主要講解了“CloseableHttpClient出現Premature end of Content-Length delimited message body怎么解決”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“CloseableHttpClient出現Premature end of Content-Length delimited message body怎么解決”吧!

一、問題描述

    今天在用CloseableHttpClient請求服務器獲取圖片流,獲取之后轉換成字節數組,出現以下異常:

CloseableHttpClient出現Premature end of Content-Length delimited message body怎么解決

原代碼如下:

	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怎么解決這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

巴南区| 潜山县| 吉林市| 仁布县| 津南区| 瓦房店市| 商丘市| 丰城市| 兰州市| 上杭县| 昔阳县| 儋州市| 高邑县| 丰城市| 三穗县| 天津市| 磐安县| 汝州市| 桃园市| 汾西县| 繁昌县| 柳林县| 丹东市| 五寨县| 苗栗县| 定日县| 咸丰县| 德州市| 广德县| 丹凤县| 漳州市| 澎湖县| 老河口市| 石楼县| 马山县| 五原县| 建水县| 龙岩市| 和平县| 富川| 瑞安市|