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的更多相关文章

  1. HttpClient (POST GET PUT)请求

    HttpClient (POST GET PUT)请求 package com.curender.web.server.http; import java.io.IOException; import ...

  2. httpclient实现的get请求及post请求

    导出mven依赖 <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId& ...

  3. HttpClient方式模拟http请求设置头

    关于HttpClient方式模拟http请求,请求头以及其他参数的设置. 本文就暂时不给栗子了,当作简版参考手册吧. 发送请求是设置请求头:header HttpClient httpClient = ...

  4. HttpClient的get+post请求使用

    啥都不说,先上代码 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReade ...

  5. HttpClient发送get post请求和数据解析

    最近在跟app对接的时候有个业务是微信登录,在这里记录的不是如何一步步操作第三方的,因为是跟app对接,所以一部分代码不是由我写,我只负责处理数据,但是整个微信第三方的流程大致都差不多,app端说要传 ...

  6. HttpWebRequest 改为 HttpClient 踩坑记-请求头设置

    HttpWebRequest 改为 HttpClient 踩坑记-请求头设置 Intro 这两天改了一个项目,原来的项目是.net framework 项目,里面处理 HTTP 请求使用的是 WebR ...

  7. spring boot get和post请求,以及requestbody为json串时候的处理

    GET.POST方式提时, 根据request header Content-Type的值来判断: application/x-www-form-urlencoded, 可选(即非必须,因为这种情况的 ...

  8. httpclient的几种请求URL的方式

    一.httpclient项目有两种使用方式.一种是commons项目,这一个就只更新到3.1版本了.现在挪到了HttpComponents子项目下了,这里重点讲解HttpComponents下面的ht ...

  9. [SoapUI] 通过SoapUI发送POST请求,请求的body是JSON格式的数据

    通过SoapUI发送POST请求,请求的body是JSON格式的数据: data={"currentDate":"2015-06-19","reset ...

  10. 我的Android进阶之旅------>android如何将List请求参数列表转换为json格式

    本文同步发表在简书,链接:http://www.jianshu.com/p/395a4c8b05b9 前言 由于接收原来的老项目并进行维护,之前的http请求是使用Apache Jakarta Com ...

随机推荐

  1. 中小规模集群----Centos6部署wordpress及java程序

      1    概述 1.1   业务需求 公司共有两个业务,网上图书馆和一个电商网站.现要求运维设计一个安全架构,本着高可用.廉价的原则. 具体情况如下: 网上图书馆是基于jsp开发: 电商系统是基于 ...

  2. java线程——notify通知的泄露

    版权声明:本文为CSDN博主「兰亭风雨」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明.原文链接:https://blog.csdn.net/ns_code/ar ...

  3. 微服务项目开发学成在线_Vue.js与Webpack

    Vue.js 1.Vue (读音 /vjuː/,类似于 view) 是一套用于构建用户界面的渐进式框架.自底向上逐层应用:作为渐进式框架要实现的目标就是方便项目增量开发. 渐进式框架:Progress ...

  4. 黑马_13 Spring Boot:04.spring boot 配置文件

    13 Spring Boot: 01.spring boot 介绍&&02.spring boot 入门 04.spring boot 配置文件 05.spring boot 整合其他 ...

  5. 并发与高并发(四)-java并发的优势和风险

  6. Python 学习笔记:Python 操作 SQL Server 数据库

    最近要将数据写到数据库里,学习了一下如何用 Python 来操作 SQL Server 数据库. 一.连接数据库: 首先,我们要连接 SQL Server 数据库,需要安装 pymssql 这个第三方 ...

  7. Centos7安装Xrdp远程桌面

    Xrdp是Microsoft远程桌面协议RDP的一个开源实现,它允许以图像方式控制远程系统. 测试环境 服务端: CentOS Linux release 7.7.1908 (Core) 客户端: W ...

  8. 吴裕雄--天生自然 JAVA开发学习:抽象类

    public abstract class Employee { private String name; private String address; private int number; pu ...

  9. [单调队列]XKC's basketball team

    XKC's basketball team 题意:给定一个序列,从每一个数后面比它大至少 \(m\) 的数中求出与它之间最大的距离.如果没有则为 \(-1\). 题解:从后向前维护一个递增的队列,从后 ...

  10. Linux之seq命令

    作用:seq命令用于以指定增量从首数开始打印数字到尾数,即产生从某个数到另外一个数之间的所有整数,并且可以对整数的格式.宽度.分割符号进行控制 语法: [1]  seq [选项]    尾数 [2]  ...