程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> httpclient-關於HttpClient設置超時時間無效的問題

httpclient-關於HttpClient設置超時時間無效的問題

編輯:編程綜合問答
關於HttpClient設置超時時間無效的問題

超時時間設置60S

超時時間設置60S

超時時間設置5S

超時時間設置5S

可以看到,當把超時時間設置為60S時,依然在21S左右超時,只有當超時時間在21S以下時,才生效。這是什麼原因?

public class Send_Class {
    public static int MAX_CONNECTION_PERROUTE = 1;//最大連接數
    public static int SOCKET_TIMEOUT = 60000;//超時時間
    public static void main(String[] args) {
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS");
        try {
            String time1= sdf.format(new Date());
            System.out.println(time1);
            Send_Class sc=new Send_Class();
            sc.test();
            time1= sdf.format(new Date());
            System.out.println(time1);
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

    }
    public void test(){
        PoolingHttpClientConnectionManager cm = new PoolingHttpClientConnectionManager();
        cm.setDefaultMaxPerRoute(MAX_CONNECTION_PERROUTE);
        Builder builder = RequestConfig.custom();
        RequestConfig config = builder.setSocketTimeout(SOCKET_TIMEOUT)
                .setConnectTimeout(SOCKET_TIMEOUT)
                .setConnectionRequestTimeout(SOCKET_TIMEOUT)
                .setStaleConnectionCheckEnabled(true).build();
        CloseableHttpClient client = HttpClients.custom()
                .setMaxConnPerRoute(MAX_CONNECTION_PERROUTE).disableConnectionState()
                .setDefaultRequestConfig(config)
                .setConnectionManager(cm).build();
        String url="http://128.28.28.28";
        HttpPost post = new HttpPost(url);
        post.setProtocolVersion(HttpVersion.HTTP_1_1);
        post.setConfig(config);
        List<NameValuePair> formpair = new ArrayList<NameValuePair>();
        formpair.add(new BasicNameValuePair("name", "張三"));
        HttpEntity entity = new UrlEncodedFormEntity(formpair, Consts.UTF_8);
        if (entity != null) {
            post.setEntity(entity);
        }
        try {   
            client.execute(post);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

最佳回答:


httpclient最長只有20秒。你可以用循環增加長度

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved