HttpClient實現調用外部項目介面工具類

來源:互聯網
上載者:User

標籤:urlencode   資源   rac   tom   get   return   out   https   post   

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; 
    } 
}

HttpClient實現調用外部項目介面工具類

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.