HTTPS

package com.bizzan.bc.wallet.util;

import java.io.IOException;
import java.security.KeyManagementException;
import java.security.KeyStoreException;
import java.security.NoSuchAlgorithmException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import org.apache.http.HttpEntity;
import org.apache.http.HttpStatus;
import org.apache.http.NameValuePair;
import org.apache.http.StatusLine;
import org.apache.http.client.ClientProtocolException;
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.entity.StringEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.message.BasicHeader;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.util.EntityUtils;

public class HttpClientUtil {

private static String charSet = "UTF-8";
private static CloseableHttpClient httpClient = null;
private static CloseableHttpResponse response = null;

/**
 * https的post请求
 * @param url
 * @param jsonstr
 * @param charset
 * @return
 * @throws IOException 
 * @throws ClientProtocolException 
 * @throws KeyStoreException 
 * @throws NoSuchAlgorithmException 
 * @throws KeyManagementException 
 */
public static String doHttpsPost(String url, String jsonStr, Map<String,String> headerPram) throws ClientProtocolException, IOException, KeyManagementException, NoSuchAlgorithmException, KeyStoreException {
    try {
        httpClient = SSLClient.createSSLClientDefault();
        HttpPost httpPost = new HttpPost(url);
        if(headerPram != null && !headerPram.isEmpty()) {
           for(Map.Entry<String, String> entry:headerPram.entrySet()){
              httpPost.setHeader(entry.getKey(), entry.getValue());
            }
        }
        
        StringEntity se = new StringEntity(jsonStr);
        se.setContentType("text/json");
        se.setContentEncoding(new BasicHeader("Content-Type", "application/json"));
        httpPost.setEntity(se);
        
        response = httpClient.execute(httpPost);
        if (response != null) {
            HttpEntity resEntity = response.getEntity();
            if (resEntity != null) {
                return EntityUtils.toString(resEntity, charSet);
            }
        }
    }finally {
        if(httpClient != null){
             httpClient.close();
        }
        if(response != null){
              response.close();
        }
    }
    return null;
}
/**
 * http的post请求(用于key-value格式的参数) 
 * @param url
 * @param param
 * @return
 * @throws IOException 
 * @throws ClientProtocolException 
 * @throws KeyStoreException 
 * @throws NoSuchAlgorithmException 
 * @throws KeyManagementException 
 */
public static String doHttpsPost(String url,Map<String,String> param, Map<String,String> headerPram) throws ClientProtocolException, IOException, KeyManagementException, NoSuchAlgorithmException, KeyStoreException{
    try {
        //请求发起客户端
        httpClient = SSLClient.createSSLClientDefault();
        //参数集合
        List<NameValuePair> postParams = new ArrayList<NameValuePair>();
        //遍历参数并添加到集合
        for(Map.Entry<String, String> entry:param.entrySet()){
            postParams.add(new BasicNameValuePair(entry.getKey(), entry.getValue()));
        }
        
        //通过post方式访问
        HttpPost post = new HttpPost(url);
        if(headerPram != null && !headerPram.isEmpty()) {
           for(Map.Entry<String, String> entry:headerPram.entrySet()){
              post.setHeader(entry.getKey(), entry.getValue());
            }
        }
        HttpEntity paramEntity = new UrlEncodedFormEntity(postParams,charSet);
        post.setEntity(paramEntity);
        response = httpClient.execute(post);
        StatusLine status = response.getStatusLine();  
        int state = status.getStatusCode();  
        if (state == HttpStatus.SC_OK) {  
            HttpEntity valueEntity = response.getEntity();
            String content = EntityUtils.toString(valueEntity);
            //jsonObject = JSONObject.fromObject(content);
            return content;
        }
    }finally{
        if(httpClient != null){
            httpClient.close();
        }
        if(response != null){
            response.close();
        }
    }
    return null;
}
/**
 * http的post请求(用于key-value格式的参数) 
 * @param url
 * @param param
 * @return
 * @throws IOException 
 * @throws ClientProtocolException 
 */
public static String doHttpPost(String url,Map<String,String> param, Map<String,String> headerPram) throws ClientProtocolException, IOException{
    try {
        //请求发起客户端
        httpClient = HttpClients.createDefault();
        //参数集合
        List<NameValuePair> postParams = new ArrayList<NameValuePair>();
        //遍历参数并添加到集合
        for(Map.Entry<String, String> entry:param.entrySet()){
            postParams.add(new BasicNameValuePair(entry.getKey(), entry.getValue()));
        }
        
        //通过post方式访问
        HttpPost post = new HttpPost(url);
        if(headerPram != null && !headerPram.isEmpty()) {
           for(Map.Entry<String, String> entry:headerPram.entrySet()){
              post.setHeader(entry.getKey(), entry.getValue());
            }
        }
        HttpEntity paramEntity = new UrlEncodedFormEntity(postParams,charSet);
        post.setEntity(paramEntity);
        response = httpClient.execute(post);
        StatusLine status = response.getStatusLine();  
        int state = status.getStatusCode();  
        if (state == HttpStatus.SC_OK) {
            HttpEntity valueEntity = response.getEntity();
            String content = EntityUtils.toString(valueEntity);
            return content;
        }else {
           return null;
        }
    }finally{
        if(httpClient != null){
            httpClient.close();
        }
        if(response != null){
            response.close();
        }
    }
}

 /** 
 * http的post请求(用于请求json格式的参数) 
 * @param url 
 * @param params 
 * @return 
 * @throws IOException 
 * @throws ClientProtocolException 
 */  
public static String doHttpPost(String url, String jsonStr, Map<String,String> headerPram) throws ClientProtocolException, IOException {  
    try {
        httpClient = HttpClients.createDefault();
      
        // 创建httpPost
        HttpPost httpPost = new HttpPost(url);     
        if(headerPram != null && !headerPram.isEmpty()) {
           for(Map.Entry<String, String> entry:headerPram.entrySet()){
              httpPost.setHeader(entry.getKey(), entry.getValue());
            }
        }
          
        StringEntity entity = new StringEntity(jsonStr, charSet);  
        entity.setContentType("text/json");
        entity.setContentEncoding(new BasicHeader("Content-Type", "application/json"));
        httpPost.setEntity(entity);          
        //发送post请求
        response = httpClient.execute(httpPost);  
        if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {  
            HttpEntity responseEntity = response.getEntity();  
            String jsonString = EntityUtils.toString(responseEntity);  
            return jsonString;  
        }
    }finally {
        if(httpClient != null){
            httpClient.close();
        }
        if(response != null){
            response.close();
        }
    }  
    return null;  
}  

/**
 * http的Get请求
 * @param url
 * @param param
 * @return
 * @throws IOException 
 * @throws ClientProtocolException 
 */
public static String doHttpGet(String url, Map<String,String> param, Map<String,String> headerPram) throws ClientProtocolException, IOException {
    CloseableHttpClient httpclient = null;
    CloseableHttpResponse response = null;
    
    try {
        httpclient = HttpClients.createDefault();
        if(param != null && !param.isEmpty()) {
            //参数集合
            List<NameValuePair> getParams = new ArrayList<NameValuePair>();
            for(Map.Entry<String, String> entry:param.entrySet()){
                getParams.add(new BasicNameValuePair(entry.getKey(), entry.getValue()));
            }
            url +="?"+EntityUtils.toString(new UrlEncodedFormEntity(getParams), "UTF-8");
        }
        //发送gey请求
        HttpGet httpGet = new HttpGet(url);
        if(headerPram != null && !headerPram.isEmpty()) {
           for(Map.Entry<String, String> entry:headerPram.entrySet()){
              httpGet.setHeader(entry.getKey(), entry.getValue());
            }
        }
        response = httpclient.execute(httpGet);  
        if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {  
            return EntityUtils.toString(response.getEntity());  
        } 
    }finally{
        if(httpclient != null){
            httpclient.close();
        }
        if(response != null){
            response.close();
        }
    }
    return null;
}
/**
 * https的Get请求
 * @param url
 * @param param
 * @return
 * @throws IOException 
 * @throws ClientProtocolException 
 * @throws KeyStoreException 
 * @throws NoSuchAlgorithmException 
 * @throws KeyManagementException 
 */
public static String doHttpsGet(String url, Map<String,String> param, Map<String,String> headerPram) throws ClientProtocolException, IOException, KeyManagementException, NoSuchAlgorithmException, KeyStoreException {
    try {
        httpClient = SSLClient.createSSLClientDefault();
        if(param != null && !param.isEmpty()) {
            //参数集合
            List<NameValuePair> getParams = new ArrayList<NameValuePair>();
            for(Map.Entry<String, String> entry:param.entrySet()){
                getParams.add(new BasicNameValuePair(entry.getKey(), entry.getValue()));
            }
            url +="?"+EntityUtils.toString(new UrlEncodedFormEntity(getParams), "UTF-8");
        }
        HttpGet httpGet = new HttpGet(url);
        RequestConfig rconfig = RequestConfig.custom()
              .setConnectionRequestTimeout(2000)
              .setSocketTimeout(4000)
              .setConnectTimeout(3000)
              .build();
        httpGet.setConfig(rconfig);
        if(headerPram != null && !headerPram.isEmpty()) {
           for(Map.Entry<String, String> entry:headerPram.entrySet()){
              httpGet.setHeader(entry.getKey(), entry.getValue());
            }
        }
        response = httpClient.execute(httpGet);
        if (response != null) {
            HttpEntity resEntity = response.getEntity();
            if (resEntity != null) {
                return EntityUtils.toString(resEntity, charSet);
            }
        }
    }finally {
       if(httpClient != null){
            httpClient.close();
        }
        if(response != null){
            response.close();
        }
    }
    return null;
}

}

public class SSLClient {
public static CloseableHttpClient createSSLClientDefault() throws KeyManagementException, NoSuchAlgorithmException, KeyStoreException{
SSLContext sslContext = new SSLContextBuilder().loadTrustMaterial(null, new TrustStrategy() {
//信任所有
public boolean isTrusted(X509Certificate[] chain, String authType) throws CertificateException {
return true;
}
}).build();
SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(sslContext);
return HttpClients.custom().setSSLSocketFactory(sslsf).build();
}

}

RestTemplate 兼容https

@Bean
public RestTemplate restTemplate() throws KeyStoreException, NoSuchAlgorithmException, KeyManagementException {

TrustStrategy acceptingTrustStrategy = (x509Certificates, authType) -> true;
SSLContext sslContext = SSLContexts.custom().loadTrustMaterial(null, acceptingTrustStrategy).build();
SSLConnectionSocketFactory connectionSocketFactory = new SSLConnectionSocketFactory(sslContext, new NoopHostnameVerifier());

HttpClientBuilder httpClientBuilder = HttpClients.custom();
httpClientBuilder.setSSLSocketFactory(connectionSocketFactory);

RequestConfig requestConfig = RequestConfig.custom()
        .setSocketTimeout(socketTimeout)        //服务器返回数据(response)的时间,超过抛出read timeout
        .setConnectTimeout(connectTimeout)      //连接上服务器(握手成功)的时间,超出抛出connect timeout
        .setConnectionRequestTimeout(connectionRequestTimeout)//从连接池中获取连接的超时时间,超时间未拿到可用连接,会抛出org.apache.http.conn.ConnectionPoolTimeoutException: Timeout waiting for connection from pool
        .build();

CloseableHttpClient httpClient = httpClientBuilder
        .setDefaultRequestConfig(requestConfig)
        // .setConnectManage()  删除
        .build();
return new RestTemplate(new HttpComponentsClientHttpRequestFactory(httpClient));

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值