依赖
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.2</version>
</dependency>
<!-- 对象转字符串的依赖 -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.28</version>
</dependency>
步骤
1: 创建httpClient 请求
CloseableHttpClient httpClient = HttpClients.createDefault();
2: 创建get/post的对象
HttpGet httpGet = new HttpGet(url); //url具体要请求的地址
3:添加请求参数
4:调用HttpClient对象的execute(HttpUriRequest request)发送请求,该方法返回一个HttpResponse
CloseableHttpResponse response = httpClient.execute(httpGet);
5:从响应模型中获取响应实体
HttpEntity responseEntity = response.getEntity();
response.getStatusLine() //响应的状态码
responseEntity.getContentLength() //响应内容长度
EntityUtils.toString(responseEntity) //响应的内容
//得到响应的内容,可以用 split()这个方法得到自己想要的数据
使用HttpClient发送请求、接收响应很简单,一般需要如下几步即可。
-
创建HttpClient对象。
-
创建请求方法的实例,并指定请求URL。如果需要发送GET请求,创建HttpGet对象;如果需要发送POST请求,创建HttpPost对象。
-
如果需要发送请求参数,可调用HttpGet、HttpPost共同的setParams(HttpParams params)方法来添加请求参数;对于HttpPost对象而言,也可调用setEntity(HttpEntity entity)方法来设置请求参数。
-
调用HttpClient对象的execute(HttpUriRequest request)发送请求,该方法返回一个HttpResponse。
-
调用HttpResponse的getAllHeaders()、getHeaders(String name)等方法可获取服务器的响应头;调用HttpResponse的getEntity()方法可获取HttpEntity对象,该对象包装了服务器的响应内容。程序可通过该对象获取服务器的响应内容。
-
释放连接。无论执行方法是否成功,都必须释放连接