适用于发送各种http请求的工具类

package org.jeecg.modules.order.util;

import cn.hutool.json.JSONObject;
import cn.hutool.json.XML;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.ParseException;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.conn.ssl.SSLConnectionSocketFactory;
import org.apache.http.conn.ssl.TrustStrategy;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.ssl.SSLContextBuilder;
import org.apache.http.util.EntityUtils;

import javax.net.ssl.SSLContext;
import java.io.IOException;
import java.security.KeyManagementException;
import java.security.KeyStoreException;
import java.security.NoSuchAlgorithmException;
import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;
import java.util.Map;

@SuppressWarnings({"resource", "deprecation"})
public class HttpClientUtils {
    /**
     * 可能用不到
     */
    public static String doGet(String url) {
        String response = null;
        try {
            HttpClient httpClient = new DefaultHttpClient();
            HttpGet httpGet = new HttpGet(url);
            HttpResponse httpResponse = httpClient.execute(httpGet);
            if (httpResponse.getStatusLine().getStatusCode() == 200) {
                // 请求和响应都成功了
                HttpEntity entity = httpResponse.getEntity();// 调用getEntity()方法获取到一个HttpEntity实例
                response = EntityUtils.toString(entity, "utf-8");// 用EntityUtils.toString()这个静态方法将HttpEntity转换成字符串,防止
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
        return response;
    }

    /**
     * doPost
     * url:请求地址
     * params:json字符串
     */
    public static String doPost(String url, String params) throws ClientProtocolException, IOException {
        String response = null;
        HttpClient httpClient = new DefaultHttpClient();
        HttpPost httpPost = new HttpPost(url);
        if (params != null && !"".equals(params)) {
            httpPost.setEntity(new StringEntity(params, "utf-8"));
        }
        httpPost.setHeader("Content-Type", "application/json; charset=UTF-8");
        HttpResponse httpResponse = httpClient.execute(httpPost);
        if (httpResponse.getStatusLine().getStatusCode() == 200) {
            // 请求和响应都成功了
            HttpEntity entity = httpResponse.getEntity();// 调用getEntity()方法获取到一个HttpEntity实例
            response = EntityUtils.toString(entity, "utf-8");// 用EntityUtils.toString()这个静态方法将HttpEntity转换成字符串,防止
            // //服务器返回的数据带有中文,所以在转换的时候将字符集指定成utf-8就可以了
        }
        return response;
    }

    /**
     * @Description post请求发送xml
     * @Param [url, requestDataXml]
     * @return java.lang.String
     **/
    public static Map doPostByXml(String url,String requestDataXml) throws Exception {
        CloseableHttpClient httpClient=null;
        CloseableHttpResponse httpResponse=null;

        //创建httpClient连接对象
        //httpClient = HttpClients.createDefault();
        httpClient = HttpClientUtils.createSSLClientDefault();
        //创建post请求连接对象
        HttpPost httpPost = new HttpPost(url);
//        //创建连接请求参数对象,并设置连接参数
//        RequestConfig requestConfig = RequestConfig.custom()
//                .setConnectTimeout(15000)		//连接服务器主机超时时间
//                .setConnectionRequestTimeout(60000)  //连接请求超时时间
//                .setSocketTimeout(6000)				//设置读取响应数据超时时间
//                .build();
//
//        //为httpPost请求设置参数
//        httpPost.setConfig(requestConfig);
        //将上传参数存放到entity属性中
        httpPost.setEntity(new StringEntity(requestDataXml,"GBK"));
        //添加头信息
        httpPost.setHeader("Content-Type","text/xml");

        String result="";
        try {
            //发送请求
            httpResponse = httpClient.execute(httpPost);
            //获取返回内容
            HttpEntity httpEntity = httpResponse.getEntity();
            result = EntityUtils.toString(httpEntity, "GBK");
        } catch (IOException e) {
            e.printStackTrace();
        }
        //将请求的返回值转换成json格式
        JSONObject jsonObject = XML.toJSONObject(result);
        Map map = (Map)jsonObject.get("stream");
        if (!"AAAAAAA".equals(map.get("status").toString())){
           throw new Exception(map.get("statusText").toString());
        }
        return map;
    }
    /**
     * 创建一个SSL信任所有证书的httpClient对象
     *
     * @return
     */
    public static CloseableHttpClient createSSLClientDefault() {
        try {
            SSLContext sslContext = new SSLContextBuilder().loadTrustMaterial(null, new TrustStrategy() {
                // 信任所有
                @Override
                public boolean isTrusted(X509Certificate[] chain, String authType) throws CertificateException {
                    return true;
                }
            }).build();
            SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(sslContext);
            return HttpClients.custom().setSSLSocketFactory(sslsf).build();
        } catch (KeyManagementException e) {
            e.printStackTrace();
        } catch (NoSuchAlgorithmException e) {
            e.printStackTrace();
        } catch (KeyStoreException e) {
            e.printStackTrace();
        }
        return HttpClients.createDefault();
    }

    /**
     * POST---无参测试
     *
     */
    public static String doPostWuCan(String url) {
        String result = "";
        // 获得Http客户端(可以理解为:你得先有一个浏览器;注意:实际上HttpClient与浏览器是不一样的)
        CloseableHttpClient httpClient = HttpClientBuilder.create().build();

        // 创建Post请求
        HttpPost httpPost = new HttpPost(url);
        // 响应模型
        CloseableHttpResponse response = null;
        try {
            // 由客户端执行(发送)Post请求
            response = httpClient.execute(httpPost);
            // 从响应模型中获取响应实体
            HttpEntity responseEntity = response.getEntity();
            if (responseEntity != null) {
                result = EntityUtils.toString(responseEntity);
            }
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (ParseException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                // 释放资源
                if (httpClient != null) {
                    httpClient.close();
                }
                if (response != null) {
                    response.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return result;
    }

    /**
     * 模拟浏览器Post
     * url:请求地址
     * params:组合参数,后期拼接到url中;
     */
    public static void doPostClient(String url, StringBuffer params) {

        // 获得Http客户端(可以理解为:你得先有一个浏览器;注意:实际上HttpClient与浏览器是不一样的)
        CloseableHttpClient httpClient = HttpClientBuilder.create().build();
        // 创建Post请求
        HttpPost httpPost = new HttpPost(url + params);

        // 设置ContentType(注:如果只是传普通参数的话,ContentType不一定非要用application/json)
        httpPost.setHeader("Content-Type", "application/json;charset=utf8");

        // 响应模型
        CloseableHttpResponse response = null;
        try {
            // 由客户端执行(发送)Post请求
            response = httpClient.execute(httpPost);
            // 从响应模型中获取响应实体
            HttpEntity responseEntity = response.getEntity();
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (ParseException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                // 释放资源
                if (httpClient != null) {
                    httpClient.close();
                }
                if (response != null) {
                    response.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

  • 9
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值