博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HttpClient实现调用外部项目接口工具类
阅读量:5265 次
发布时间:2019-06-14

本文共 3919 字,大约阅读时间需要 13 分钟。

import java.io.IOException;

import java.net.URL;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import org.apache.http.NameValuePair;

import org.apache.http.HttpEntity;
import org.apache.http.client.config.RequestConfig;
import org.apache.http.client.entity.UrlEncodedFormEntity;
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.DefaultHostnameVerifier;
import org.apache.http.conn.util.PublicSuffixMatcher;
import org.apache.http.conn.util.PublicSuffixMatcherLoader;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.util.EntityUtils;

public class HttpUtils {

 private static RequestConfig requestConfig = RequestConfig.custom().setSocketTimeout(15000).setConnectTimeout(15000)
   .setConnectionRequestTimeout(15000).build();

 public static String sendHttpGet(HttpGet httpGet) {

  CloseableHttpClient httpClient = null;
  CloseableHttpResponse response = null;
  HttpEntity entity = null;
  String responseContent = null;
  try {
   // 创建默认的httpClient实例.
   httpClient = HttpClients.createDefault();
   httpGet.setConfig(requestConfig);
   
   // 执行请求
   response = httpClient.execute(httpGet);
   entity = response.getEntity();
   responseContent = EntityUtils.toString(entity, "UTF-8");
  } catch (Exception e) {
   e.printStackTrace();
  } finally {
   try {
    // 关闭连接,释放资源
    if (response != null) {
     response.close();
    }
    if (httpClient != null) {
     httpClient.close();
    }
   } catch (IOException e) {
    e.printStackTrace();
   }
  }
  return responseContent;
 }
 /**
     * 发送 post请求
     * @param httpUrl 地址
     * @param maps 参数
     */ 
    public static String sendHttpPost(String httpUrl, Map<String, String> maps) { 
        HttpPost httpPost = new HttpPost(httpUrl);// 创建httpPost   
        // 创建参数队列   
        List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(); 
        for (String key : maps.keySet()) { 
            nameValuePairs.add(new BasicNameValuePair(key, maps.get(key))); 
        } 
        try { 
            httpPost.setEntity(new UrlEncodedFormEntity(nameValuePairs, "UTF-8")); 
        } catch (Exception e) { 
            e.printStackTrace(); 
        } 
        return sendHttpPost(httpPost); 
    } 
     
     
 public static String sendHttpPost(HttpPost httpPost) {
  CloseableHttpClient httpClient = null;
  CloseableHttpResponse response = null;
  HttpEntity entity = null;
  String responseContent = null;
  try {
   // 创建默认的httpClient实例.
   httpClient = HttpClients.createDefault();
   httpPost.setConfig(requestConfig);
   // 执行请求
   response = httpClient.execute(httpPost);
   entity = response.getEntity();
   responseContent = EntityUtils.toString(entity, "UTF-8");
  } catch (Exception e) {
   e.printStackTrace();
  } finally {
   try {
    // 关闭连接,释放资源
    if (response != null) {
     response.close();
    }
    if (httpClient != null) {
     httpClient.close();
    }
   } catch (IOException e) {
    e.printStackTrace();
   }
  }
  return responseContent;
 }
 
 /**
     * 发送Get请求Https
     * @param httpPost
     * @return
     */ 
    public static String sendHttpsGet(HttpGet httpGet) { 
        CloseableHttpClient httpClient = null; 
        CloseableHttpResponse response = null; 
        HttpEntity entity = null; 
        String responseContent = null; 
        try { 
            // 创建默认的httpClient实例. 
            PublicSuffixMatcher publicSuffixMatcher = PublicSuffixMatcherLoader.load(new URL(httpGet.getURI().toString())); 
            DefaultHostnameVerifier hostnameVerifier = new DefaultHostnameVerifier(publicSuffixMatcher); 
            httpClient = HttpClients.custom().setSSLHostnameVerifier(hostnameVerifier).build(); 
            httpGet.setConfig(requestConfig); 
            // 执行请求 
            response = httpClient.execute(httpGet); 
            entity = response.getEntity(); 
            responseContent = EntityUtils.toString(entity, "UTF-8"); 
        } catch (Exception e) { 
            e.printStackTrace(); 
        } finally { 
            try { 
                // 关闭连接,释放资源 
                if (response != null) { 
                    response.close(); 
                } 
                if (httpClient != null) { 
                    httpClient.close(); 
                } 
            } catch (IOException e) { 
                e.printStackTrace(); 
            } 
        } 
        return responseContent; 
    } 
}

转载于:https://www.cnblogs.com/xiaofengyuan/p/6339776.html

你可能感兴趣的文章
D3.js 之 d3-shap 简介(转)
查看>>
制作满天星空
查看>>
类和结构
查看>>
CSS3选择器(二)之属性选择器
查看>>
adidas crazylight 2018 performance analysis review
查看>>
typeset shell 用法
查看>>
python 之 循环语句
查看>>
心得25--JDK新特性9-泛型1-加深介绍
查看>>
[转]ceph网络通信模块_以monitor模块为例
查看>>
HDOJ 1754 I Hate It(线段树基本操作)
查看>>
latex tree
查看>>
安装NVIDIA驱动时禁用自带nouveau驱动
查看>>
HDU-1255 覆盖的面积 (扫描线)
查看>>
css3学习01
查看>>
【USACO】 奶牛会展
查看>>
ActiveMQ笔记之点对点队列(Point-to-Point)
查看>>
继承和多态
查看>>
Dijkstra+计算几何 POJ 2502 Subway
查看>>
修复IE不能执行JS的方法
查看>>
程序员究竟该如何提高效率zt
查看>>