HttpClient介绍

  HttpClient 不是一个浏览器。它是一个客户端的 HTTP 通信实现库。HttpClient的目标是发 送和接收HTTP 报文。HttpClient不会去缓存内容,执行 嵌入在 HTML 页面中的javascript 代码,猜测内容类型,重新格式化请求/重定向URI,或者其它和 HTTP 运输无关的功能。

HttpClient使用

  •   使用需要引入jar包,maven项目引入如下:

             <dependency>
    <groupId>org.apache.httpcomponents</groupId>
    <artifactId>httpclient</artifactId>
    <version>4.5</version>
    </dependency> <dependency>
    <groupId>org.apache.httpcomponents</groupId>
    <artifactId>httpcore</artifactId>
    <version>4.4.4</version>
    </dependency> <dependency>
    <groupId>org.apache.httpcomponents</groupId>
    <artifactId>httpmime</artifactId>
    <version>4.5</version>
    </dependency>
  •   使用方法,代码如下: 
     package com.test;
    
     import java.io.File;
    import java.io.IOException;
    import java.security.KeyManagementException;
    import java.security.KeyStoreException;
    import java.security.NoSuchAlgorithmException;
    import java.util.Iterator;
    import java.util.List;
    import java.util.Map; import org.apache.http.HttpEntity;
    import org.apache.http.HttpStatus;
    import org.apache.http.client.config.RequestConfig;
    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.config.Registry;
    import org.apache.http.config.RegistryBuilder;
    import org.apache.http.conn.socket.ConnectionSocketFactory;
    import org.apache.http.conn.socket.PlainConnectionSocketFactory;
    import org.apache.http.conn.ssl.SSLConnectionSocketFactory;
    import org.apache.http.conn.ssl.SSLContextBuilder;
    import org.apache.http.conn.ssl.TrustSelfSignedStrategy;
    import org.apache.http.entity.ContentType;
    import org.apache.http.entity.StringEntity;
    import org.apache.http.entity.mime.MultipartEntityBuilder;
    import org.apache.http.entity.mime.content.FileBody;
    import org.apache.http.entity.mime.content.StringBody;
    import org.apache.http.impl.client.CloseableHttpClient;
    import org.apache.http.impl.client.DefaultHttpRequestRetryHandler;
    import org.apache.http.impl.client.HttpClients;
    import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
    import org.apache.http.util.EntityUtils; /**
    *
    * @author H__D
    * @date 2016年10月19日 上午11:27:25
    *
    */
    public class HttpClientUtil { // utf-8字符编码
    public static final String CHARSET_UTF_8 = "utf-8"; // HTTP内容类型。
    public static final String CONTENT_TYPE_TEXT_HTML = "text/xml"; // HTTP内容类型。相当于form表单的形式,提交数据
    public static final String CONTENT_TYPE_FORM_URL = "application/x-www-form-urlencoded"; // HTTP内容类型。相当于form表单的形式,提交数据
    public static final String CONTENT_TYPE_JSON_URL = "application/json;charset=utf-8"; // 连接管理器
    private static PoolingHttpClientConnectionManager pool; // 请求配置
    private static RequestConfig requestConfig; static { try {
    //System.out.println("初始化HttpClientTest~~~开始");
    SSLContextBuilder builder = new SSLContextBuilder();
    builder.loadTrustMaterial(null, new TrustSelfSignedStrategy());
    SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(
    builder.build());
    // 配置同时支持 HTTP 和 HTPPS
    Registry<ConnectionSocketFactory> socketFactoryRegistry = RegistryBuilder.<ConnectionSocketFactory> create().register(
    "http", PlainConnectionSocketFactory.getSocketFactory()).register(
    "https", sslsf).build();
    // 初始化连接管理器
    pool = new PoolingHttpClientConnectionManager(
    socketFactoryRegistry);
    // 将最大连接数增加到200,实际项目最好从配置文件中读取这个值
    pool.setMaxTotal(200);
    // 设置最大路由
    pool.setDefaultMaxPerRoute(2);
    // 根据默认超时限制初始化requestConfig
    int socketTimeout = 10000;
    int connectTimeout = 10000;
    int connectionRequestTimeout = 10000;
    requestConfig = RequestConfig.custom().setConnectionRequestTimeout(
    connectionRequestTimeout).setSocketTimeout(socketTimeout).setConnectTimeout(
    connectTimeout).build(); //System.out.println("初始化HttpClientTest~~~结束");
    } catch (NoSuchAlgorithmException e) {
    e.printStackTrace();
    } catch (KeyStoreException e) {
    e.printStackTrace();
    } catch (KeyManagementException e) {
    e.printStackTrace();
    } // 设置请求超时时间
    requestConfig = RequestConfig.custom().setSocketTimeout(50000).setConnectTimeout(50000)
    .setConnectionRequestTimeout(50000).build();
    } public static CloseableHttpClient getHttpClient() { CloseableHttpClient httpClient = HttpClients.custom()
    // 设置连接池管理
    .setConnectionManager(pool)
    // 设置请求配置
    .setDefaultRequestConfig(requestConfig)
    // 设置重试次数
    .setRetryHandler(new DefaultHttpRequestRetryHandler(0, false))
    .build(); return httpClient;
    } /**
    * 发送Post请求
    *
    * @param httpPost
    * @return
    */
    private static String sendHttpPost(HttpPost httpPost) { CloseableHttpClient httpClient = null;
    CloseableHttpResponse response = null;
    // 响应内容
    String responseContent = null;
    try {
    // 创建默认的httpClient实例.
    httpClient = getHttpClient();
    // 配置请求信息
    httpPost.setConfig(requestConfig);
    // 执行请求
    response = httpClient.execute(httpPost);
    // 得到响应实例
    HttpEntity entity = response.getEntity(); // 可以获得响应头
    // Header[] headers = response.getHeaders(HttpHeaders.CONTENT_TYPE);
    // for (Header header : headers) {
    // System.out.println(header.getName());
    // } // 得到响应类型
    // System.out.println(ContentType.getOrDefault(response.getEntity()).getMimeType()); // 判断响应状态
    if (response.getStatusLine().getStatusCode() >= 300) {
    throw new Exception(
    "HTTP Request is not success, Response code is " + response.getStatusLine().getStatusCode());
    } if (HttpStatus.SC_OK == response.getStatusLine().getStatusCode()) {
    responseContent = EntityUtils.toString(entity, CHARSET_UTF_8);
    EntityUtils.consume(entity);
    } } catch (Exception e) {
    e.printStackTrace();
    } finally {
    try {
    // 释放资源
    if (response != null) {
    response.close();
    }
    } catch (IOException e) {
    e.printStackTrace();
    }
    }
    return responseContent;
    } /**
    * 发送Get请求
    *
    * @param httpGet
    * @return
    */
    private static String sendHttpGet(HttpGet httpGet) { CloseableHttpClient httpClient = null;
    CloseableHttpResponse response = null;
    // 响应内容
    String responseContent = null;
    try {
    // 创建默认的httpClient实例.
    httpClient = getHttpClient();
    // 配置请求信息
    httpGet.setConfig(requestConfig);
    // 执行请求
    response = httpClient.execute(httpGet);
    // 得到响应实例
    HttpEntity entity = response.getEntity(); // 可以获得响应头
    // Header[] headers = response.getHeaders(HttpHeaders.CONTENT_TYPE);
    // for (Header header : headers) {
    // System.out.println(header.getName());
    // } // 得到响应类型
    // System.out.println(ContentType.getOrDefault(response.getEntity()).getMimeType()); // 判断响应状态
    if (response.getStatusLine().getStatusCode() >= 300) {
    throw new Exception(
    "HTTP Request is not success, Response code is " + response.getStatusLine().getStatusCode());
    } if (HttpStatus.SC_OK == response.getStatusLine().getStatusCode()) {
    responseContent = EntityUtils.toString(entity, CHARSET_UTF_8);
    EntityUtils.consume(entity);
    } } catch (Exception e) {
    e.printStackTrace();
    } finally {
    try {
    // 释放资源
    if (response != null) {
    response.close();
    }
    } catch (IOException e) {
    e.printStackTrace();
    }
    }
    return responseContent;
    } /**
    * 发送 post请求
    *
    * @param httpUrl
    * 地址
    */
    public static String sendHttpPost(String httpUrl) {
    // 创建httpPost
    HttpPost httpPost = new HttpPost(httpUrl);
    return sendHttpPost(httpPost);
    } /**
    * 发送 get请求
    *
    * @param httpUrl
    */
    public static String sendHttpGet(String httpUrl) {
    // 创建get请求
    HttpGet httpGet = new HttpGet(httpUrl);
    return sendHttpGet(httpGet);
    } /**
    * 发送 post请求(带文件)
    *
    * @param httpUrl
    * 地址
    * @param maps
    * 参数
    * @param fileLists
    * 附件
    */
    public static String sendHttpPost(String httpUrl, Map<String, String> maps, List<File> fileLists) {
    HttpPost httpPost = new HttpPost(httpUrl);// 创建httpPost
    MultipartEntityBuilder meBuilder = MultipartEntityBuilder.create();
    if (maps != null) {
    for (String key : maps.keySet()) {
    meBuilder.addPart(key, new StringBody(maps.get(key), ContentType.TEXT_PLAIN));
    }
    }
    if (fileLists != null) {
    for (File file : fileLists) {
    FileBody fileBody = new FileBody(file);
    meBuilder.addPart("files", fileBody);
    }
    }
    HttpEntity reqEntity = meBuilder.build();
    httpPost.setEntity(reqEntity);
    return sendHttpPost(httpPost);
    } /**
    * 发送 post请求
    *
    * @param httpUrl
    * 地址
    * @param params
    * 参数(格式:key1=value1&key2=value2)
    *
    */
    public static String sendHttpPost(String httpUrl, String params) {
    HttpPost httpPost = new HttpPost(httpUrl);// 创建httpPost
    try {
    // 设置参数
    if (params != null && params.trim().length() > 0) {
    StringEntity stringEntity = new StringEntity(params, "UTF-8");
    stringEntity.setContentType(CONTENT_TYPE_FORM_URL);
    httpPost.setEntity(stringEntity);
    }
    } catch (Exception e) {
    e.printStackTrace();
    }
    return sendHttpPost(httpPost);
    } /**
    * 发送 post请求
    *
    * @param maps
    * 参数
    */
    public static String sendHttpPost(String httpUrl, Map<String, String> maps) {
    String parem = convertStringParamter(maps);
    return sendHttpPost(httpUrl, parem);
    } /**
    * 发送 post请求 发送json数据
    *
    * @param httpUrl
    * 地址
    * @param paramsJson
    * 参数(格式 json)
    *
    */
    public static String sendHttpPostJson(String httpUrl, String paramsJson) {
    HttpPost httpPost = new HttpPost(httpUrl);// 创建httpPost
    try {
    // 设置参数
    if (paramsJson != null && paramsJson.trim().length() > 0) {
    StringEntity stringEntity = new StringEntity(paramsJson, "UTF-8");
    stringEntity.setContentType(CONTENT_TYPE_JSON_URL);
    httpPost.setEntity(stringEntity);
    }
    } catch (Exception e) {
    e.printStackTrace();
    }
    return sendHttpPost(httpPost);
    } /**
    * 发送 post请求 发送xml数据
    *
    * @param httpUrl 地址
    * @param paramsXml 参数(格式 Xml)
    *
    */
    public static String sendHttpPostXml(String httpUrl, String paramsXml) {
    HttpPost httpPost = new HttpPost(httpUrl);// 创建httpPost
    try {
    // 设置参数
    if (paramsXml != null && paramsXml.trim().length() > 0) {
    StringEntity stringEntity = new StringEntity(paramsXml, "UTF-8");
    stringEntity.setContentType(CONTENT_TYPE_TEXT_HTML);
    httpPost.setEntity(stringEntity);
    }
    } catch (Exception e) {
    e.printStackTrace();
    }
    return sendHttpPost(httpPost);
    } /**
    * 将map集合的键值对转化成:key1=value1&key2=value2 的形式
    *
    * @param parameterMap
    * 需要转化的键值对集合
    * @return 字符串
    */
    public static String convertStringParamter(Map parameterMap) {
    StringBuffer parameterBuffer = new StringBuffer();
    if (parameterMap != null) {
    Iterator iterator = parameterMap.keySet().iterator();
    String key = null;
    String value = null;
    while (iterator.hasNext()) {
    key = (String) iterator.next();
    if (parameterMap.get(key) != null) {
    value = (String) parameterMap.get(key);
    } else {
    value = "";
    }
    parameterBuffer.append(key).append("=").append(value);
    if (iterator.hasNext()) {
    parameterBuffer.append("&");
    }
    }
    }
    return parameterBuffer.toString();
    } public static void main(String[] args) throws Exception { System.out.println(sendHttpGet("http://www.baidu.com")); }
    }

【JAVA】通过HttpClient发送HTTP请求的方法的更多相关文章

  1. 通过java.net.URLConnection发送HTTP请求的方法

    一.前言 如何通过Java发送HTTP请求,通俗点讲,如何通过Java(模拟浏览器)发送HTTP请求. Java有原生的API可用于发送HTTP请求,即java.net.URL.java.net.UR ...

  2. Android系列之网络(三)----使用HttpClient发送HTTP请求(分别通过GET和POST方法发送数据)

    ​[声明] 欢迎转载,但请保留文章原始出处→_→ 生命壹号:http://www.cnblogs.com/smyhvae/ 文章来源:http://www.cnblogs.com/smyhvae/p/ ...

  3. Android系列之网络(一)----使用HttpClient发送HTTP请求(通过get方法获取数据)

    [声明] 欢迎转载,但请保留文章原始出处→_→ 生命壹号:http://www.cnblogs.com/smyhvae/ 文章来源:http://www.cnblogs.com/smyhvae/p/4 ...

  4. (一)----使用HttpClient发送HTTP请求(通过get方法获取数据)

    (一)----使用HttpClient发送HTTP请求(通过get方法获取数据) 一.HTTP协议初探: HTTP(Hypertext Transfer Protocol)中文 “超文本传输协议”,是 ...

  5. java中发送http请求的方法

    package org.jeecgframework.test.demo; import java.io.BufferedReader; import java.io.FileOutputStream ...

  6. 发送http请求的方法

    在http/1.1 协议中,定义了8种发送http请求的方法 get post options head put delete trace connect patch. 根据http协议的设计初衷,不 ...

  7. java 模拟浏览器发送post请求

    java使用URLConnection发送post请求 /** * 向指定 URL 发送POST方法的请求 * * @param url * 发送请求的 URL * @param param * 请求 ...

  8. JAVA利用HttpClient进行POST请求(HTTPS)

    目前,要为另一个项目提供接口,接口是用HTTP URL实现的,最初的想法是另一个项目用jQuery post进行请求. 但是,很可能另一个项目是部署在别的机器上,那么就存在跨域问题,而JQuery的p ...

  9. .net core使用HttpClient发送代理请求_程序内抓包_Fiddler抓包

    前言:  通过Fiddler抓取浏览器请求数据,相信大家已经都会用了,我们知道Fiddler是通过在本机计算器添加一个默认的代理服务器来实现的抓包数据的,端口号为:8888. 其实当我们打开Fiddl ...

随机推荐

  1. mysql 联合索引(转)

    http://blog.csdn.net/lmh12506/article/details/8879916 mysql 联合索引详解 联合索引又叫复合索引.对于复合索引:Mysql从左到右的使用索引中 ...

  2. Linux下*.tar.gz文件解压缩命令

    1.压缩命令: 命令格式:tar  -zcvf   压缩文件名.tar.gz   被压缩文件名 可先切换到当前目录下.压缩文件名和被压缩文件名都可加入路径. 2.解压缩命令: 命令格式:tar  -z ...

  3. C Primer Plus(第五版)12

    第 12 章 存储类, 链接和内存管理 在本章中你将学习下列内容 . 关键字: auto, extern, static, register, const, volatile, restricted. ...

  4. EBS应用服务器启动指南

    1.ssh应用服务器    applprod用户密码:*** 管理脚本在$ADMIN_SCRIPTS_HOME路径下 adstrtal.sh       启动所有服务,命令行为adstrtal.sh ...

  5. loadrunner 功能详解(一) - Run-time Settings

    1.General / Run Logic  Number of Iterations:说明的是反复循环的次数. 常境的时间中,如果时间设为5分钟,而实际上程序的运行只需要1分钟,而在这项中,选择的是 ...

  6. threadlocal类

    1.threadlocal对象为线程提供变量的副本,该副本为线程私有的,其它线程访问不到: 2.变量的副本存储在ThreadLocalMap对象中: 3.使用threadlocal时候,最好先使用in ...

  7. nginx的gzip选项和expire过期时间记录

    最近,参加了公司的组织的一个公开课,收获还是挺多的,下面来总结接一下: 一. 使用nginx来进行网页内容的压缩编码与传输速度的优化: 先来观察一下news.sina.com.cn在请求和传输的时候发 ...

  8. awk用法

    目前虽然有很多工具可以代替awk,但是呢我还是认为awk还是非常重要,比如有时候load数据到hive,mysql发现数据有点问题,这样可以先对比文件和库中数据是否一致,这样awk就发挥用处了,还有从 ...

  9. MySQL 5.7 深度解析: 半同步复制技术

    复制架构衍生史 在谈这个特性之前,我们先来看看MySQL的复制架构衍生史. MySQL的复制分为四种: 普通的replication,异步同步. 搭建简单,使用非常广泛,从mysql诞生之初,就产生了 ...

  10. 一步一步搭建Jenkins环境

    Jenkins使用经验谈1(一步一步搭建Jenkins环境)在公司使用 Jenkins 软件已经有一段时间了,走了很多弯路,但也积累了一些经验,可以和大家分享一下.我们来一起搭建Jenkins环境.首 ...