zoukankan      html  css  js  c++  java
  • httpclient发送request请求时设置header和timeout

    package com.xxx.xxx.common;
    
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.util.Map;
    
    import org.apache.http.client.HttpClient;
    import org.apache.http.client.config.RequestConfig;
    import org.apache.http.client.methods.HttpGet;
    import org.apache.http.impl.client.HttpClientBuilder;
    import org.apache.http.HttpResponse;
    
    import com.google.common.base.Charsets;
    
    public class HttpRequest {
        /**
         * 向指定URL发送GET方法的请求
         * 
         * @param url
         *            发送请求的URL
         * @param param
         *            httprequest请求参数。
         * @param headers
         *            需要添加的httpheader参数
         * @param timeout
         *            请求超时时间
         * @return result 所代表远程资源的响应结果
         */
        public static String Get(String url, String param, Map<String, String> headers, int timeout) {
            String result = "";
            BufferedReader in = null;
            String reqUrl = url + "?" + param;
            try {
                // 构造httprequest设置
                RequestConfig config = RequestConfig.custom().setConnectTimeout(timeout)
                        .setConnectionRequestTimeout(timeout).build();
                HttpClient client = HttpClientBuilder.create().setDefaultRequestConfig(config).build();
                HttpGet htGet = new HttpGet(reqUrl);
                // 添加http headers
                if (headers != null && headers.size() > 0) {
                    for (String key : headers.keySet()) {
                        htGet.addHeader(key, headers.get(key));
                    }
                }
                // 读取数据
                HttpResponse r = client.execute(htGet);
                in = new BufferedReader(new InputStreamReader(r.getEntity().getContent(), Charsets.UTF_8));
                String line;
                while ((line = in.readLine()) != null) {
                    result += line;
                }
            } catch (Exception e) {
                System.out.println("发送GET请求出现异常!" + e);
                e.printStackTrace();
            } finally {
                try {
                    if (in != null) {
                        in = null;
                    }
                } catch (Exception e2) {
                    e2.printStackTrace();
                }
            }
            return result;
        }
    }
  • 相关阅读:
    html 按钮跳转问题(及其相关)
    用JS写的一个简单的时钟
    JS里面function和Function的区别
    Sharepoint常见概念
    整理个人学习方向,技术列表,通过这个来明确方向
    关于SqlServer的内连接,外链接以及left join,right join之间的一些问题与区别。
    display:none与visibility:hidden的区别
    给自己立下一个flag先
    linux 打包和压缩的概念和区别
    Hadoop和Spark的比较区别
  • 原文地址:https://www.cnblogs.com/snowlove67/p/4838455.html
Copyright © 2011-2022 走看看