HttpClient-get请求/Post请求/Post-Json/Header
1、Pom文件添加httpClient 依赖
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.</version>
</dependency>
2、 HttpGet
import java.io.IOException; import org.apache.http.Header;
import org.apache.http.HttpEntity;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils; public class HttpTest {
// main Alt+?
public static void main(String[] args) {
// 1.创建一个httpclient,默认的
CloseableHttpClient client = HttpClients.createDefault();
// 2.创建一个get请求方法
HttpGet get = new HttpGet("http://mail.163.com");
CloseableHttpResponse response = null;
try { /////
// 3.执行请求,获取到响应
response = client.execute(get); System.out.println(response.getStatusLine());// 状态行
System.out.println(response.getStatusLine().getStatusCode());// 状态码
System.out.println(response.getStatusLine().getProtocolVersion());// 协议版本
System.out.println(response.getStatusLine().getReasonPhrase());// 响应描述 System.out.println("######################");
Header[] allHeaders = response.getAllHeaders();
System.out.println(allHeaders.length);
for (int i = ; i < allHeaders.length; i++) {
System.out.println(allHeaders[i]);
}
System.out.println("################");
System.out.println(response.getFirstHeader("Server"));
System.out.println(response.getFirstHeader("Server").getValue());// 获取value
System.out.println(response.getFirstHeader("Content-Type").getValue());// 获取value System.out.println("################");
// 实体
HttpEntity entity = response.getEntity();
// 获取实体类型
System.out.println(entity.getContentType());
// 实体长度,文件下载最常用,一般网页无此参数
System.out.println(entity.getContentLength());
// EntityUtils实体类的工具包 ,将实体对象转成Stirng或者byte
System.out.println(EntityUtils.toString(entity, "utf-8"));// 可以指定编码格式(中文:utf-8或者GBK) } catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (response != null)
response.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
// syso Alt+?
System.out.println();
}
}
3、HttpPost请求
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.List; import org.apache.http.HeaderIterator;
import org.apache.http.NameValuePair;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpPost;
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 LoginTest {
public static void main(String[] args) {
CloseableHttpClient client = HttpClients.createDefault(); HttpPost post = new HttpPost("http://localhost/loginController/loginPage");
// 表单参数,并放入list中
NameValuePair username = new BasicNameValuePair("userName", "taki");
NameValuePair password = new BasicNameValuePair("password", ""); List<NameValuePair> paramList = new ArrayList<NameValuePair>();
paramList.add(username);
paramList.add(password); CloseableHttpResponse response = null;
try {
// form实体,放入到请求中
UrlEncodedFormEntity entity = new UrlEncodedFormEntity(paramList);
post.setEntity(entity); response = client.execute(post);
System.out.println(response.getStatusLine().getStatusCode());
// 根据返回码,200为成功,继续操作
if (response.getStatusLine().getStatusCode() == ) {
// 读取header
HeaderIterator headerIterator = response.headerIterator();
while (headerIterator.hasNext()) {
System.out.println(headerIterator.next());
}
System.out.println("####################");
// 读取实体
System.out.println(EntityUtils.toString(response.getEntity())); } } catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (response != null) {
try {
response.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
4、HttpPost 请求Json数据(该接口不通)
import java.io.IOException;
import java.io.UnsupportedEncodingException; import org.apache.http.HeaderIterator;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.methods.CloseableHttpResponse;
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.util.EntityUtils; public class JsonTest { public static void main(String[] args) {
CloseableHttpClient client = HttpClients.createDefault();
HttpPost post = new HttpPost("http://117.122.238.33/webservice/services/Rest/account");
post.setHeader("Content-Type", "application/json");
CloseableHttpResponse response = null;
try {
StringEntity entity = new StringEntity(
"{\"name\": \"jiaminqiang\",\"billingAddress\": \"beijing\", \"phoneNumber\": \"15801396646\"}");
post.setEntity(entity); response = client.execute(post);
System.out.println(response.getStatusLine().getStatusCode());
if(response.getStatusLine().getStatusCode() == ) {
HeaderIterator headerIterator = response.headerIterator();
while(headerIterator.hasNext()) {
System.out.println(headerIterator.next());
}
System.out.println("##############");
System.out.println(EntityUtils.toString(response.getEntity()));
} } catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}finally {
if(response!=null) {
try {
response.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
} } }
5、Http添加Header
import org.apache.http.Header;
import org.apache.http.HeaderIterator;
import org.apache.http.HttpRequest;
import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus;
import org.apache.http.HttpVersion;
import org.apache.http.message.BasicHttpRequest;
import org.apache.http.message.BasicHttpResponse; public class HeaderTest { public static void main(String[] args) {
HttpResponse response = new BasicHttpResponse(HttpVersion.HTTP_1_1, , "not found");
// request 操作header同response
HttpRequest request = new BasicHttpRequest("post", "mail.163.com");
request.addHeader("", "");
//添加header name唯一
response.setHeader("Set-Cookie", "test1");
response.setHeader("Set-Cookie2", "test");
//添加header name可重复
response.addHeader("Set-Cookie", "test2");
// Ctrl + 2 l 自动生成返回类型变量
Header[] allHeaders = response.getAllHeaders();
// Ctrl + d 删除一行
// Ctrl + Shift + f 代码格式化
// Ctrl + / 注释一行
// Ctrl + Shift + / 多行注释
// Ctrl + z 撤销
// Ctrl + s 保存
// Header[] allHeaders3 = response.getAllHeaders();
// String [] s = {"1","2","aa"};
// for(int i = 0;i<s.length;i++) {
// System.out.println(s[i]);
// } for (int i = ; i < allHeaders.length; i++) {
System.out.println(allHeaders[i]);
} System.out.println(response.getStatusLine()); System.out.println(response.getFirstHeader("Set-Cookie"));
System.out.println(response.getLastHeader("Set-Cookie"));
Header[] headers = response.getHeaders("Set-Cookie");
System.out.println(headers[]);
System.out.println(headers[]);
// 遍历迭代器
HeaderIterator headerIterator = response.headerIterator();
// System.out.println(headerIterator.nextHeader());
// System.out.println(headerIterator.nextHeader());
System.out.println("###################"); while (headerIterator.hasNext()) {
System.out.println(headerIterator.nextHeader());
}
} }
HttpClient-get请求/Post请求/Post-Json/Header的更多相关文章
- HttpClient (POST GET PUT)请求
HttpClient (POST GET PUT)请求 package com.curender.web.server.http; import java.io.IOException; import ...
- httpclient实现的get请求及post请求
导出mven依赖 <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId& ...
- HttpClient方式模拟http请求设置头
关于HttpClient方式模拟http请求,请求头以及其他参数的设置. 本文就暂时不给栗子了,当作简版参考手册吧. 发送请求是设置请求头:header HttpClient httpClient = ...
- HttpClient的get+post请求使用
啥都不说,先上代码 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReade ...
- HttpClient发送get post请求和数据解析
最近在跟app对接的时候有个业务是微信登录,在这里记录的不是如何一步步操作第三方的,因为是跟app对接,所以一部分代码不是由我写,我只负责处理数据,但是整个微信第三方的流程大致都差不多,app端说要传 ...
- HttpWebRequest 改为 HttpClient 踩坑记-请求头设置
HttpWebRequest 改为 HttpClient 踩坑记-请求头设置 Intro 这两天改了一个项目,原来的项目是.net framework 项目,里面处理 HTTP 请求使用的是 WebR ...
- spring boot get和post请求,以及requestbody为json串时候的处理
GET.POST方式提时, 根据request header Content-Type的值来判断: application/x-www-form-urlencoded, 可选(即非必须,因为这种情况的 ...
- httpclient的几种请求URL的方式
一.httpclient项目有两种使用方式.一种是commons项目,这一个就只更新到3.1版本了.现在挪到了HttpComponents子项目下了,这里重点讲解HttpComponents下面的ht ...
- [SoapUI] 通过SoapUI发送POST请求,请求的body是JSON格式的数据
通过SoapUI发送POST请求,请求的body是JSON格式的数据: data={"currentDate":"2015-06-19","reset ...
- 我的Android进阶之旅------>android如何将List请求参数列表转换为json格式
本文同步发表在简书,链接:http://www.jianshu.com/p/395a4c8b05b9 前言 由于接收原来的老项目并进行维护,之前的http请求是使用Apache Jakarta Com ...
随机推荐
- UML-类图-需要写关联名称吗?
概念模型:需要写关联名称:类图:不需要写关联名称. 注意,概念模型关联线不需要箭头.
- java基础一(2020.1.3)
今日学习内容: 带命令行参数的Java实例 Java的程序结构 Java的变量与常量 带命令行参数的Java实例: class ArgsDemo{ public static void main(St ...
- Tomcat8 启动报错
Tomcat8启动报错: java.lang.NoSuchMethodError:javax.servlet.ServletContext.getClassLoader 在网上搜索后,发现此类问题大都 ...
- Linux-proc文件系统介绍
1.操作系统级别的调试 (1).简单程序单步调试 (2).复杂程序printf打印信息调试 (3).框架体系日志记录信息调试 (4).内核调试的困境 2.proc虚拟文件系统的工作原理 (1).Lin ...
- leetcode腾讯精选练习之最长公共前缀(九)
最长公共前缀 题目 编写一个函数来查找字符串数组中的最长公共前缀. 如果不存在公共前缀,返回空字符串 "". 示例 1: 输入: ["flower"," ...
- Python 进行 OCR识别 -- pytesseract库
pip install pytesseract 报错:tesseract is not installed or it's not in your path 下载安装 Tesseract-OCR ht ...
- visual studio2019下静态链接库的制作
创建静态库项目 项目名称为20199324lib // pch.h #ifndef __PCH__ #define __PCH__ extern int add(int a, int b);//ext ...
- 对于 C语言的扩展和JAVA的重载理解
哎,又被学长看成笨蛋了 ,先前学习java,自己真是什么都要忘了,弄得自己连java最重要的概念--重载,都不知道是啥,还厚着脸皮和学长说 是函数名字一样 ,但是就是函数里面的参数和参数类型不一 ...
- [转载]Python方法绑定——Unbound/Bound method object的一些梳理
本篇主要总结Python中绑定方法对象(Bound method object)和未绑定方法对象(Unboud method object)的区别和联系.主要目的是分清楚这两个极容易混淆的概念,顺便将 ...
- 一篇文章带你了解axios网络交互-Vue
来源:滁州SEO 1 **什么是axios呢?**了解,并去使用它,对于axios发送请求的两种方式有何了解,以及涉及axios跨域问题如何解决. 对于axios网络交互,去使用axios的同时,首先 ...