HttpClient工具类及应用

2024-03-15 11:38

本文主要是介绍HttpClient工具类及应用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Content-Type类型:
常见的媒体格式类型如下:

  • text/html : HTML格式
  • text/plain :纯文本格式
  • text/xml : XML格式
  • image/gif :gif图片格式
  • image/jpeg :jpg图片格式
  • image/png:png图片格式

以application开头的媒体格式类型:

  • application/xhtml+xml :XHTML格式

  • application/xml : XML数据格式

  • application/atom+xml :Atom XML聚合格式

  • application/json : JSON数据格式

  • application/pdf :pdf格式

  • application/msword : Word文档格式

  • application/octet-stream : 二进制流数据(如常见的文件下载)

  • application/x-www-form-urlencoded : 中默认的encType,form表单数据被编码为key/value格式发送到服务器(表单默认的提交数据的格式)
    另外一种常见的媒体格式是上传文件之时使用的:

  • multipart/form-data : 需要在表单中进行文件上传时,就需要使用该格式

区别:

application/xml 媒体类型:推荐使用。如果 MIME 用户代理或 Web 用户代理不支持这个媒体类型,会转为 application/octet-stream,当做二进制流来处理。application/xml 实体默认用 UTF-8 字符集。Content-type: application/xml; charset=“utf-8” 或 <?xml version="1.0" encoding="utf-8"?> 都可以生效。

text/xml 媒体类型:如果 MIME 用户代理或 Web 用户代理不支持这个媒体类型,会将其视为 text/plain,当做纯文本处理。text/xml 媒体类型限制了 XML 实体中可用的编码类型(例如此时支持 UTF-8 但不支持 UTF-16,因为使用 UTF-16 编码的文本在处理 CR,LF 和 NUL 会导致异常转换)。text/xml 实体在 XML 头指定编码格式无效,必须在 HTTP 头部的 Content-Type: 中指定才会生效(例如 <?xml version="1.0" encoding="utf-8"?> 无法设置字符集,Content-Type: text/xml; charset=“utf-8” 则可以)。没有设置字符集时默认使用“us-ascii”字符集。

package com.xiaobu.base.utils;import org.apache.http.HttpStatus;
import org.apache.http.NameValuePair;
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.ContentType;
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.BasicNameValuePair;
import org.apache.http.util.EntityUtils;import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;/*** Content-type 常用的几种类型* application/x-www-form-urlencoded :form表单键值对<K,V>类型 默认类型** @author xiaobu* @version JDK1.8.0_171* @date on  2018/12/10 10:40* @description V1.0 HttpClient工具类*/
public class HttpClientUtils {/*** 获取httppost对象 设置连接超时属性* setConnectTimeout:设置连接超时时间,单位毫秒。* setConnectionRequestTimeout:设置从connect Manager获取Connection 超时时间,单位毫秒。这个属性是新加的属性,因为目前版本是可以共享连接池的。* setSocketTimeout:请求获取数据的超时时间,单位毫秒。 如果访问一个接口,多少时间内无法返回数据,就直接放弃此次调用。*/public static HttpPost getHttpPost(String url) {// 创建post方式请求对象HttpPost httpPost = new HttpPost(url);RequestConfig requestConfig = RequestConfig.custom().setConnectTimeout(5000).setConnectionRequestTimeout(1000).setSocketTimeout(5000).build();httpPost.setConfig(requestConfig);return httpPost;}/*** @param url 请求地址, map 数据类型, encoding 编码]* @return java.lang.String* @author xiaobu* @date 2018/12/10 10:46* @descprition pots请求传输 形式数据形式访问* @version 1.0*/public static String sendPostDataByMap(String url, Map<String, String> map, String encoding) {// 创建httpclient对象CloseableHttpClient httpClient = HttpClients.createDefault();// 创建post方式请求对象HttpPost httpPost = getHttpPost(url);// 装填参数List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();if (map != null) {for (Map.Entry<String, String> entry : map.entrySet()) {nameValuePairs.add(new BasicNameValuePair(entry.getKey(), entry.getValue()));}}// 设置参数到请求对象中try {httpPost.setEntity(new UrlEncodedFormEntity(nameValuePairs, encoding));} catch (UnsupportedEncodingException e) {e.printStackTrace();}// 设置header信息// 指定报文头【Content-type】、【User-Agent】httpPost.setHeader("Content-type", "application/x-www-form-urlencoded");httpPost.setHeader("User-Agent", "Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt)");CloseableHttpResponse response = getPostResponse(httpClient, httpPost);return getResult(response, encoding);}/*** @param url 请求笛子, json 请求数据类型, encoding编码* @return java.lang.String* @author xiaobu* @date 2018/12/10 10:45* @descprition post请求传输json* @version 1.0* JSON.toJSONString(map) 将map对象转化为json字符串*/public static String sendPostDataByJson(String url, String json, String encoding) {// 创建httpclient对象CloseableHttpClient httpClient = HttpClients.createDefault();// 创建post方式请求对象HttpPost httpPost = getHttpPost(url);// 设置参数到请求对象中StringEntity stringEntity = new StringEntity(json, ContentType.APPLICATION_JSON);stringEntity.setContentEncoding(encoding);httpPost.setEntity(stringEntity);CloseableHttpResponse response = getPostResponse(httpClient, httpPost);return getResult(response, encoding);}public static String sendPostDataByXml(String url, String xml, String encoding) {// 创建httpclient对象CloseableHttpClient httpClient = HttpClients.createDefault();// 创建post方式请求对象HttpPost httpPost = getHttpPost(url);httpPost.addHeader("Content-Type", "text/xml;charset=UTF-8");// 设置参数到请求对象中  text/xml和application/xml的区别StringEntity stringEntity = new StringEntity(xml, encoding);stringEntity.setContentEncoding(encoding);httpPost.setEntity(stringEntity);CloseableHttpResponse response = getPostResponse(httpClient, httpPost);return getResult(response, encoding);}/*** @param url 访问地址, encoding 编码]* @return java.lang.String* @author xiaobu* @date 2018/12/10 11:17* @descprition get方式请求* setConnectTimeout:设置连接超时时间,单位毫秒。* setConnectionRequestTimeout:设置从connect Manager获取Connection 超时时间,单位毫秒。这个属性是新加的属性,因为目前版本是可以共享连接池的。* setSocketTimeout:请求获取数据的超时时间,单位毫秒。 如果访问一个接口,多少时间内无法返回数据,就直接放弃此次调用。* @version 1.0*/public static String sendGetData(String url, String encoding) {// 创建httpclient对象CloseableHttpClient httpClient = HttpClients.createDefault();// 创建get方式请求对象HttpGet httpGet = new HttpGet(url);RequestConfig requestConfig = RequestConfig.custom().setConnectTimeout(5000).setConnectionRequestTimeout(1000).setSocketTimeout(5000).build();httpGet.setConfig(requestConfig);// Content-type设置为application/x-www-form-urlencoded 或者不设置也是可以的(默认为application/x-www-form-urlencoded)httpGet.addHeader("Content-type", "application/json");// 通过请求对象获取响应对象CloseableHttpResponse response = getGetResponse(httpClient, httpGet);return getResult(response, encoding);}/*** @param httpClient , httpPost* @return org.apache.http.client.methods.CloseableHttpResponse* @author xiaobu* @date 2018/12/10 11:18* @descprition 获取response对象* @version 1.0*/public static CloseableHttpResponse getPostResponse(CloseableHttpClient httpClient, HttpPost httpPost) {CloseableHttpResponse response = null;try {response = httpClient.execute(httpPost);} catch (IOException e) {e.printStackTrace();}return response;}/*** @param httpClient , httpGET* @return org.apache.http.client.methods.CloseableHttpResponse* @author xiaobu* @date 2018/12/10 11:18* @descprition 获取response对象* @version 1.0*/public static CloseableHttpResponse getGetResponse(CloseableHttpClient httpClient, HttpGet httpGet) {CloseableHttpResponse response = null;try {response = httpClient.execute(httpGet);} catch (IOException e) {e.printStackTrace();}return response;}/*** @param response, encoding]* @return java.lang.String* @author xiaobu* @date 2018/12/10 11:18* @descprition 获取结果* @version 1.0*/public static String getResult(CloseableHttpResponse response, String encoding) {String result = "";if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {try {result = EntityUtils.toString(response.getEntity(), encoding);} catch (IOException e) {e.printStackTrace();}}// 释放链接try {response.close();} catch (IOException e) {e.printStackTrace();}return result;}}

服务端代码:

    /*** 功能描述: Post方式获取数据* @author xiaobu* @date 2019/8/23 12:36* @param data 用于获取application/x-www-form-urlencoded 下的参数名称data的数据 , request 通过流来获取body的数据* @return java.lang.String* @version 1.0*/@PostMapping("revQrCodeRelationData")public String revQrCodeRelationData(String data, HttpServletRequest request) {try {InputStream inputStream = request.getInputStream();BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(inputStream, StandardCharsets.UTF_8));String line = null;StringBuilder stringBuilder = new StringBuilder();while ((line = bufferedReader.readLine()) != null) {//读取并换行stringBuilder.append(line + "\n");}System.out.println("stringBuilder = " + stringBuilder);} catch (IOException e) {e.printStackTrace();}return null;}/*** 功能描述:Get方式* @author xiaobu* @date 2019/8/23 12:41* @param Sign, timeStamp, device, quntity* @return java.lang.String* @version 1.0*/@GetMapping("sendQRCodeData")public String sendQrCodeData(String Sign,long timeStamp,String device,int  quntity){Map<String, String> data = new HashMap<>();data.put("QRCode1", "http://xxxxxxx1");data.put("QRCode2", "http://xxxxxxx2");data.put("QRCode3", "http://xxxxxxx3");data.put("IndexCode1", "001");data.put("IndexCode2", "002");data.put("IndexCode3", "003");data.put("Quantity", quntity+"");return "success";}

测试代码:

package com.xiaobu;import com.xiaobu.base.utils.HttpClientUtils;import java.util.HashMap;
import java.util.Map;/*** @author xiaobu* @version JDK1.8.0_171* @date on  2018/12/27 15:55* @description V1.0*/
public class HttpClientDemo {public static void main(String[] args) {String postUrl = "http://localhost:8899/api/revQrCodeRelationData";//通过K-V来获取 SpringMVC实现了封装Map<String, String> map = new HashMap<>();map.put("data", "我是你大爷");String result = HttpClientUtils.sendPostDataByMap(postUrl, map, "UTF-8");System.out.println("result = " + result);//通过request.getInputStream()来获取String json = "我是你二大爷";String jsonResult=HttpClientUtils.sendPostDataByJson(postUrl, json, "UTF-8");System.out.println("jsonResult = " + jsonResult);//通过request.getInputStream()来获取String xml = "<!--?xml version=\"1.0\"?-->\n" +"<methodcall>\n" +"    <methodname>examples.getStateName</methodname>\n" +"    <params>\n" +"        <param>\n" +"            <value><i4>中国人</i4></value>\n" +"\n" +"    </params>\n" +"</methodcall>";String xmlResult=HttpClientUtils.sendPostDataByXml(postUrl, xml, "UTF-8");System.out.println("xmlResult = " + xmlResult);//get方式String getUrl = "http://localhost:8899/api/sendQRCodeData?Sign=1&timeStamp=1234567890123&device=1&quntity=1";String getResult = HttpClientUtils.sendGetData(getUrl, "UTF-8");System.out.println("getResult = " + getResult);}
}

参考:

Http中Content-Type的详解

这篇关于HttpClient工具类及应用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/811858

相关文章

Python基于wxPython和FFmpeg开发一个视频标签工具

《Python基于wxPython和FFmpeg开发一个视频标签工具》在当今数字媒体时代,视频内容的管理和标记变得越来越重要,无论是研究人员需要对实验视频进行时间点标记,还是个人用户希望对家庭视频进行... 目录引言1. 应用概述2. 技术栈分析2.1 核心库和模块2.2 wxpython作为GUI选择的优

Python中随机休眠技术原理与应用详解

《Python中随机休眠技术原理与应用详解》在编程中,让程序暂停执行特定时间是常见需求,当需要引入不确定性时,随机休眠就成为关键技巧,下面我们就来看看Python中随机休眠技术的具体实现与应用吧... 目录引言一、实现原理与基础方法1.1 核心函数解析1.2 基础实现模板1.3 整数版实现二、典型应用场景2

Python Dash框架在数据可视化仪表板中的应用与实践记录

《PythonDash框架在数据可视化仪表板中的应用与实践记录》Python的PlotlyDash库提供了一种简便且强大的方式来构建和展示互动式数据仪表板,本篇文章将深入探讨如何使用Dash设计一... 目录python Dash框架在数据可视化仪表板中的应用与实践1. 什么是Plotly Dash?1.1

使用Java实现通用树形结构构建工具类

《使用Java实现通用树形结构构建工具类》这篇文章主要为大家详细介绍了如何使用Java实现通用树形结构构建工具类,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录完整代码一、设计思想与核心功能二、核心实现原理1. 数据结构准备阶段2. 循环依赖检测算法3. 树形结构构建4. 搜索子

利用Python开发Markdown表格结构转换为Excel工具

《利用Python开发Markdown表格结构转换为Excel工具》在数据管理和文档编写过程中,我们经常使用Markdown来记录表格数据,但它没有Excel使用方便,所以本文将使用Python编写一... 目录1.完整代码2. 项目概述3. 代码解析3.1 依赖库3.2 GUI 设计3.3 解析 Mark

Android Kotlin 高阶函数详解及其在协程中的应用小结

《AndroidKotlin高阶函数详解及其在协程中的应用小结》高阶函数是Kotlin中的一个重要特性,它能够将函数作为一等公民(First-ClassCitizen),使得代码更加简洁、灵活和可... 目录1. 引言2. 什么是高阶函数?3. 高阶函数的基础用法3.1 传递函数作为参数3.2 Lambda

利用Go语言开发文件操作工具轻松处理所有文件

《利用Go语言开发文件操作工具轻松处理所有文件》在后端开发中,文件操作是一个非常常见但又容易出错的场景,本文小编要向大家介绍一个强大的Go语言文件操作工具库,它能帮你轻松处理各种文件操作场景... 目录为什么需要这个工具?核心功能详解1. 文件/目录存javascript在性检查2. 批量创建目录3. 文件

Java中&和&&以及|和||的区别、应用场景和代码示例

《Java中&和&&以及|和||的区别、应用场景和代码示例》:本文主要介绍Java中的逻辑运算符&、&&、|和||的区别,包括它们在布尔和整数类型上的应用,文中通过代码介绍的非常详细,需要的朋友可... 目录前言1. & 和 &&代码示例2. | 和 ||代码示例3. 为什么要使用 & 和 | 而不是总是使

Python循环缓冲区的应用详解

《Python循环缓冲区的应用详解》循环缓冲区是一个线性缓冲区,逻辑上被视为一个循环的结构,本文主要为大家介绍了Python中循环缓冲区的相关应用,有兴趣的小伙伴可以了解一下... 目录什么是循环缓冲区循环缓冲区的结构python中的循环缓冲区实现运行循环缓冲区循环缓冲区的优势应用案例Python中的实现库

SpringBoot整合MybatisPlus的基本应用指南

《SpringBoot整合MybatisPlus的基本应用指南》MyBatis-Plus,简称MP,是一个MyBatis的增强工具,在MyBatis的基础上只做增强不做改变,下面小编就来和大家介绍一下... 目录一、MyBATisPlus简介二、SpringBoot整合MybatisPlus1、创建数据库和