Apache HttpClient 連接池的使用

jopen 9年前發布 | 1K 次閱讀 Java HttpClient

import java.io.IOException;
import java.util.Random;

import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; import org.apache.http.HttpStatus; import org.apache.http.HttpVersion; import org.apache.http.client.ClientProtocolException; import org.apache.http.client.HttpClient; import org.apache.http.client.methods.HttpGet; import org.apache.http.conn.scheme.PlainSocketFactory; import org.apache.http.conn.scheme.Scheme; import org.apache.http.conn.scheme.SchemeRegistry; import org.apache.http.impl.client.DefaultHttpClient; import org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager; import org.apache.http.params.BasicHttpParams; import org.apache.http.params.CoreConnectionPNames; import org.apache.http.params.CoreProtocolPNames; import org.apache.http.params.HttpParams;

public class HttpClientUtils { private static final Log log = LogFactory.getLog(HttpClientUtils.class); private static ThreadSafeClientConnManager cm = null; static { SchemeRegistry schemeRegistry = new SchemeRegistry(); schemeRegistry.register(new Scheme("http", 80, PlainSocketFactory .getSocketFactory()));

cm = new ThreadSafeClientConnManager(schemeRegistry); try { int maxTotal = 100; cm.setMaxTotal(maxTotal); } catch (NumberFormatException e) { log.error( "Key[httpclient.max_total] Not Found in systemConfig.properties", e); } // 每條通道的并發連接數設置(連接池) try { int defaultMaxConnection = 50; cm.setDefaultMaxPerRoute(defaultMaxConnection); } catch (NumberFormatException e) { log.error( "Key[httpclient.default_max_connection] Not Found in systemConfig.properties", e); } }

public static HttpClient getHttpClient() { HttpParams params = new BasicHttpParams(); params.setParameter(CoreProtocolPNames.PROTOCOL_VERSION, HttpVersion.HTTP_1_1); params.setParameter(CoreConnectionPNames.CONNECTION_TIMEOUT, 3000); // 3000ms return new DefaultHttpClient(cm, params); }

public static void release() { if (cm != null) { cm.shutdown(); } }

public static void main(String[] args) throws ClientProtocolException, IOException { Random r = new Random(); for (int i = 0; i < 10; i++) { long l1 = System.currentTimeMillis(); HttpClient client = getHttpClient();

HttpGet get = new HttpGet("http://www.baidu.com/s?wd=&quot;

 + r.nextInt(5000));

HttpResponse response = client.execute(get); if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) { HttpEntity entity = response.getEntity(); long l = entity.getContentLength(); System.out.println("回應結果長度:" + l); } System.out.println("查詢耗時" + (System.currentTimeMillis() - l1)); } }

}</pre>

 本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!