コード例 #1
0
ファイル: HttpUtility.java プロジェクト: zhenlonghe/weiciyuan
  private HttpUtility() {

    HttpParams params = new BasicHttpParams();
    params.setParameter(CoreProtocolPNames.PROTOCOL_VERSION, HttpVersion.HTTP_1_1);
    PoolingClientConnectionManager connectionManager = new PoolingClientConnectionManager();
    connectionManager.setMaxTotal(5);

    httpClient = new DecompressingHttpClient(new DefaultHttpClient(connectionManager));
    HttpConnectionParams.setConnectionTimeout(httpClient.getParams(), 8000);
    HttpConnectionParams.setSoTimeout(httpClient.getParams(), 8000);
  }