博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
httpclient 4.5 get请求
阅读量:5037 次
发布时间:2019-06-12

本文共 4124 字,大约阅读时间需要 13 分钟。

还是官网靠谱啊

package com.test.httpclient.getpost;import java.io.IOException;import java.util.ArrayList;import java.util.List;import org.apache.http.HttpEntity;import org.apache.http.HttpResponse;import org.apache.http.NameValuePair;import org.apache.http.client.ClientProtocolException;import org.apache.http.client.ResponseHandler;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.impl.client.CloseableHttpClient;import org.apache.http.impl.client.HttpClients;import org.apache.http.message.BasicNameValuePair;import org.apache.http.util.EntityUtils;public class HttpRequestUtils {    public static void main(String[] args) throws Exception {        CloseableHttpClient httpclient = HttpClients.createDefault();        String url = "https://blockchain.info/unspent?active=1Cdid9KFAaatwczBwBttQcwXYCpvK8h7FK";        try {            HttpGet httpGet = new HttpGet(url);            CloseableHttpResponse response1 = httpclient.execute(httpGet);                     // Create a custom response handler            ResponseHandler
responseHandler = new ResponseHandler
() { @Override public String handleResponse( final HttpResponse response) throws ClientProtocolException, IOException { int status = response.getStatusLine().getStatusCode(); if (status >= 200 && status < 300) { HttpEntity entity = response.getEntity(); return entity != null ? EntityUtils.toString(entity) : null; } else { throw new ClientProtocolException("Unexpected response status: " + status); } } }; // The underlying HTTP connection is still held by the response object // to allow the response content to be streamed directly from the network socket. // In order to ensure correct deallocation of system resources // the user MUST call CloseableHttpResponse#close() from a finally clause. // Please note that if response content is not fully consumed the underlying // connection cannot be safely re-used and will be shut down and discarded // by the connection manager. try { System.out.println(response1.getStatusLine()); System.out.println(response1.toString()); HttpEntity entity1 = response1.getEntity(); // do something useful with the response body // and ensure it is fully consumed String responseBody = httpclient.execute(httpGet, responseHandler); System.out.println(responseBody); EntityUtils.consume(entity1); } finally { response1.close(); } /*HttpPost httpPost = new HttpPost("http://httpbin.org/post"); List
nvps = new ArrayList
(); nvps.add(new BasicNameValuePair("username", "vip")); nvps.add(new BasicNameValuePair("password", "secret")); httpPost.setEntity(new UrlEncodedFormEntity(nvps)); CloseableHttpResponse response2 = httpclient.execute(httpPost); try { System.out.println(response2.getStatusLine()); HttpEntity entity2 = response2.getEntity(); // do something useful with the response body // and ensure it is fully consumed EntityUtils.consume(entity2); } finally { response2.close(); }*/ } finally { httpclient.close(); } }}
org.apache.httpcomponents
httpclient
4.5.2

 

转载于:https://www.cnblogs.com/heben/p/6060836.html

你可能感兴趣的文章
[个人翻译]Redis 集群教程(下)
查看>>
理清字符集和字符编码关系
查看>>
【转自官网】INS-30508 Invalid ASM Disks on Grid Infrastructure Installation (文档 ID 1999903.1)...
查看>>
Ubuntu下mysql修改连接超时wait_timeout
查看>>
日期格式化后转换为24时制
查看>>
如果在docker中部署tomcat,并且部署java应用程序
查看>>
匿名类型
查看>>
第四次作业
查看>>
函数的封装
查看>>
【转】Thread Local的正确原理与适用场景
查看>>
linux上mysql访问:Access denied for user 'agtipay'@'iZm5ebiyb4f90ga9xiycgsZ' (using password: YES)...
查看>>
idea下修改maven的setting.xml配置阿里云镜像
查看>>
5.泡妞与设计模式(六)创建者模式
查看>>
Linux centos7编译源码安装redis
查看>>
分割平面和空间的相关公式
查看>>
调试ASP.NET程序
查看>>
第三周学习进度
查看>>
access 清空后,自动编号怎么才能从0开始
查看>>
动态规划-最长上升子序列 LIS
查看>>
树中的路径和 Sum of Distances in Tree
查看>>