HttpClient实现调用外部项目接口工具类

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

时间: 2024-12-28 18:11:04

HttpClient实现调用外部项目接口工具类的相关文章

接口工具类

该工具类主要用于调用ERP import java.nio.charset.Charset;import java.util.List; import org.apache.http.HttpEntity;import org.apache.http.client.config.RequestConfig;import org.apache.http.client.methods.CloseableHttpResponse;import org.apache.http.client.method

百度地图V2.0实践项目开发工具类bmap.util.js V1.4

/** * 百度地图使用工具类-v2.0(大眾版) * * @author boonya * @date 2013-7-7 * @address Chengdu,Sichuan,China * @email [email protected] * @company KWT.Shenzhen.Inc.com * @notice 有些功能需要加入外部JS库才能使用,另外还需要申请地图JS key . * 申请地址:http://developer.baidu.com/map/apply-key.ht

一个使用命令行编译Android项目的工具类

一个使用命令行编译Android项目的工具类 简介 编译apk项目需要使用的几个工具,基本都在sdk中,它们分别是(Windows系统): 1.aapt.exe 资源打包工具 2.android.jar Android编译工具 3.dx.bat dex文件生成工具 4.sdklib.jar 生成apk 5.jarsigner 签名工具 准备 在打包前,需要的环境如下: 1.JDK1.6+ 2.Android SDK 3.上述5个工具的路径 打包过程 1.生成R.java文件 比如: aapt p

WebApi系列~通过HttpClient来调用Web Api接口

HttpClient是一个被封装好的类,主要用于Http的通讯,它在.net,java,oc中都有被实现,当然,我只会.net,所以,只讲.net中的HttpClient去调用Web Api的方法,基于api项目的特殊性,它需要有一个完全安全的环境,所以,你的api控制器看起来有点特别,只有5个方法,而且都是标准的http方法,我觉得这种设计很不错,很清晰,而且为了实现安全性,它不支持使用传统的表单数据,取而代之的是FromBody参数,它指拿HttpRequestMessage里参数,而不是所

Android开源项目大全 - 工具类

主要包括那些不错的开发库,包括依赖注入框架.图片缓存.网络相关.数据库ORM建模.Android公共库.Android 高版本向低版本兼容.多媒体相关及其他. 一.依赖注入DI 通过依赖注入减少View.服务.资源简化初始化,事件绑定等重复繁琐工作 AndroidAnnotations(Code Diet)android快速开发框架 项目地址:https://github.com/excilys/androidannotations 文档介绍:https://github.com/excilys

http请求,HttpClient,调用短信接口

项目中安全设置找回密码的功能,需要通过发送短信验证绑定手机,通过绑定的手机号验证并重新设置密码. 因为项目是通过maven管理的,所以需要在pom.xml文件中引入jar包, maven引入的jar包: <!-- https://mvnrepository.com/artifact/commons-httpclient/commons-httpclient --> <dependency> <groupId>commons-httpclient</groupId&

Java模拟http请求远程调用接口工具类

package ln; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.HashMap; import java.util.List; import java.util.Map; /** * 用于模拟HTTP请求中GET/POST方式 * @author landa *

通过HttpClient来调用Web Api接口~续~实体参数的传递

并且我们知道了Post,Put方法只能有一个FromBody参数,再有多个参数时,上讲提到,需要将它封装成一个对象进行传递,而这讲主要围绕这个话题来说,接口层添加一个新类User_Info,用来进行数据传递,而客户端使用网页ajax和控制台HttpClient的方式分别进行实现,Follow me! 下面定义一个复杂类型对象 public class User_Info { public int Id { get; set; } public string Name { get; set; }

WebApi系列~通过HttpClient来调用Web Api接口~续~实体参数的传递

上一讲中介绍了使用HttpClient如何去调用一个标准的Web Api接口,并且我们知道了Post,Put方法只能有一个FromBody参数,再有多个参数时,上讲提到,需要将它封装成一个对象进行传递,而这讲主要围绕这个话题来说,接口层添加一个新类User_Info,用来进行数据传递,而客户端使用网页ajax和控制台HttpClient的方式分别进行实现,Follow me! 下面定义一个复杂类型对象 public class User_Info { public int Id { get; s