首页 > 学院 > 开发设计 > 正文

http客户端请求

2019-11-11 05:11:03
字体:
来源:转载
供稿:网友

注:主要是用于调用接口使用的http请求方法,分为post和get俩种。

HttpClient和HttpsURLConnection的区别:

/*** 直接访问请求时可以用HttpsURLConnection,但* 可能需要用户登录而且具有相应的权限才可访问该页面。* 在这种情况下,就需要涉及session、Cookie的处理了,* 如果打算使用HttpURLConnection来处理这些细节,* 当然也是可能实现的,只是处理起来难度就大了。       为了更好地处理向Web站点请求,包括处理Session、Cookie等细节问题,       Apache开源组织提供了一个HttpClient项目,看它的名称就知道,       它是一个简单的HTTP客户端(并不是浏览器),可以用于发送HTTP请求,       接收HTTP响应。但不会缓存服务器的响应,       不能执行HTML页面中嵌入的javaScript代码;       也不会对页面内容进行任何解析、处理。        简单来说,HttpClient就是一个增强版的HttpURLConnection,        HttpURLConnection可以做的事情HttpClient全部可以做;        HttpURLConnection没有提供的有些功能,        HttpClient也提供了,但它只是关注于如何发送请求、接收响应,以及管理HTTP连接。       使用HttpClient发送请求、接收响应很简单,只要如下几步即可。    创建HttpClient对象。    如果需要发送GET请求,创建HttpGet对象;如果需要发送POST请求,创建HttpPost对象。    如果需要发送请求参数,    可调用HttpGet、HttpPost共同的setParams(HetpParams params)方法来添加请求参数;    对于HttpPost对象而言,也可调用setEntity(HttpEntity entity)方法来设置请求参数。    调用HttpClient对象的execute(HttpUriRequest request)发送请求,    执行该方法返回一个HttPResponse。    调用HttpResponse的getAllHeaders()、getHeaders(String name)等方法可获取服务器的响应头;    调用HttpResponse的getEntity()方法可获取HttpEntity对象,该对象包装了服务器的响应内容。    程序可通过该对象获取服务器的响应内容。* @return*/

public static String post(String url,Map<String, Object> params) throws ClientProtocolException, IOException

{String content = null;List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();if(params!=null){Set<String> keySet = params.keySet();     for(String key : keySet) {      nameValuePairs.add(new BasicNameValuePair(key, String.valueOf(params.get(key))));       } }CloseableHttpClient httpclient = HttpClientBuilder.create().build();HttpPost httppost = new HttpPost(url);httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs,"utf-8"));CloseableHttpResponse response = httpclient.execute(httppost);if(200!=response.getStatusLine().getStatusCode()){httppost.releaseConnection();return null;}HttpEntity entity = response.getEntity();content  = EntityUtils.toString(entity, "utf-8");httppost.releaseConnection();return content;}public static String get(String url) throws ClientProtocolException, IOException{CloseableHttpClient httpclient = HttpClientBuilder.create().build();                //HttpGet httpget = new HttpGet("http://www.baidu.com/");       HttpGet httpget = new HttpGet(url);          RequestConfig requestConfig = RequestConfig.custom()                 .setConnectionRequestTimeout(1000)               .setConnectTimeout(3000)                 .setSocketTimeout(4000).build();         httpget.setConfig(requestConfig);                CloseableHttpResponse response = httpclient.execute(httpget);               System.out.println("StatusCode -> " + response.getStatusLine().getStatusCode());if(200!=response.getStatusLine().getStatusCode()){httpget.releaseConnection();return null;}       HttpEntity entity = response.getEntity();               String jsonStr = EntityUtils.toString(entity);//, "utf-8");       System.out.println(jsonStr);                httpget.releaseConnection();       return jsonStr;}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表