Java学习笔记 31 - 使用HTTP协议发送GET/POST请求(详细)

使用HTTP协议发送GET/POST请求,可以有多种方式,以下详细介绍两种方法。
一、JDK 的 java.net 包中提供的访问 HTTP 协议功能发送GET/POST请求
1、发送get请求详细步骤
1)创建要请求的URL实例

            String urlNameString = url + "?" + param;
            URL realUrl = new URL(urlNameString);

2)打开和实例URL的连接

            URLConnection connection = realUrl.openConnection();

3)为已打开的连接设置HTTP请求通用的属性,如accept,connection,user-agent.

            connection.setRequestProperty("accept", "*/*");
            connection.setRequestProperty("connection", "Keep-Alive");
            connection.setRequestProperty("user-agent",
                    "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");

4)在设置好属性的连接基础上,执行实际的连接,即发送请求

            connection.connect();

5)获取get请求的响应头

            Map<String, List<String>> map = connection.getHeaderFields();
             // 遍历所有的响应头字段
             for (String key : map.keySet()) {
                System.out.println(key + "--->" + map.get(key));
              }

6)获取get请求的响应结果.这里可以通过BufferedReader输入流来读取URL的响应

             BufferedReader in = new BufferedReader(new InputStreamReader(
                    connection.getInputStream()));
             String line;
             while ((line = in.readLine()) != null) {
                result += line;
              }

也可以使用工具类IOUtils的toString方法获取响应结果.

              result = IOUtils.toString(connection.getInputStream(),"utf-8");

7)关闭流,关闭连接

   // 使用finally块来关闭输入流
        finally {
            try {
                if (in != null) {
                    in.close();
                }
            } catch (Exception e2) {
                e2.printStackTrace();
            }
        }

2、发送post请求详细步骤
1)创建要请求的URL实例

            String urlNameString = url + "?" + param;
            URL realUrl = new URL(urlNameString);

2)打开和实例URL的连接

            URLConnection connection = realUrl.openConnection();

3)为已打开的连接设置HTTP请求通用的属性,如accept,connection,user-agent.

            connection.setRequestProperty("accept", "*/*");
            connection.setRequestProperty("connection", "Keep-Alive");
            connection.setRequestProperty("user-agent",
                    "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");

4)由于post请求,参数是放在body中,需要设置连接中允许写入参数

        conn.setDoOutput(true);
            conn.setDoInput(true);

5)获取URLConnection对象对应的输出流

         PrintWriter out = new PrintWriter(conn.getOutputStream());

6)写入发送post请求需要的参数

         out.print(param);
             out.flush();

6)获取get请求的响应结果.这里可以通过BufferedReader输入流来读取URL的响应

             BufferedReader in = new BufferedReader(new InputStreamReader(
                    connection.getInputStream()));
             String line;
             while ((line = in.readLine()) != null) {
                result += line;
              }
    也可以使用工具类IOUtils的toString方法获取响应结果.
           List<String> list = IOUtils.readLines(conn.getInputStream(),"UTF-8");
            for(String s:list){
                System.out.println(s);
            }
7)关闭流,关闭连接

完整代码:

package com.sc.http;

import org.apache.commons.io.IOUtils;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.URL;
import java.net.URLConnection;
import java.util.List;
import java.util.Map;

public class HttpRequest {
    /**
     * 向指定URL发送GET方法的请求
     *
     * @param url
     *            发送请求的URL
     * @param param
     *            请求参数,请求参数应该是 name1=value1&name2=value2 的形式。
     * @return URL 所代表远程资源的响应结果
     */
    public static String sendGet(String url, String param) {
        String result = "";
        BufferedReader in = null;
        try {
            String urlNameString = url + "?" + param;
            URL realUrl = new URL(urlNameString);
            // 打开和URL之间的连接
            URLConnection connection = realUrl.openConnection();
            // 设置通用的请求属性
            connection.setRequestProperty("accept", "*/*");
            connection.setRequestProperty("connection", "Keep-Alive");
            connection.setRequestProperty("user-agent",
                    "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
            // 建立实际的连接
            connection.connect();
            // 获取所有响应头字段
            Map<String, List<String>> map = connection.getHeaderFields();
            // 遍历所有的响应头字段
            for (String key : map.keySet()) {
                System.out.println(key + "--->" + map.get(key));
            }
             //定义 BufferedReader输入流来读取URL的响应
            in = new BufferedReader(new InputStreamReader(
                    connection.getInputStream()));
            String line;
            while ((line = in.readLine()) != null) {
                result += line;
            }

            result = IOUtils.toString(connection.getInputStream(),"utf-8");
        } catch (Exception e) {
            System.out.println("发送GET请求出现异常!" + e);
            e.printStackTrace();
        }
        // 使用finally块来关闭输入流
        finally {
            try {
                if (in != null) {
                    in.close();
                }
            } catch (Exception e2) {
                e2.printStackTrace();
            }
        }
        return result;
    }

    /**
     * 向指定 URL 发送POST方法的请求
     *
     * @param url
     *            发送请求的 URL
     * @param param
     *            请求参数,请求参数应该是 name1=value1&name2=value2 的形式。
     * @return 所代表远程资源的响应结果
     */
    public static String sendPost(String url, String param) {
        PrintWriter out = null;
        BufferedReader in = null;
        String result = "";
        try {
            URL realUrl = new URL(url);
            // 打开和URL之间的连接
            URLConnection conn = realUrl.openConnection();
            // 设置通用的请求属性
            conn.setRequestProperty("accept", "*/*");
            conn.setRequestProperty("connection", "Keep-Alive");
            conn.setRequestProperty("user-agent",
                    "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
            // 发送POST请求必须设置如下两行
            conn.setDoOutput(true);
            conn.setDoInput(true);
            // 获取URLConnection对象对应的输出流
            out = new PrintWriter(conn.getOutputStream());
            // 发送请求参数
            out.print(param);
            // flush输出流的缓冲
            out.flush();
            // 定义BufferedReader输入流来读取URL的响应
            in = new BufferedReader(
                    new InputStreamReader(conn.getInputStream()));
            String line;
            while ((line = in.readLine()) != null) {
                result += line;
            }
//            List<String> list = IOUtils.readLines(conn.getInputStream(),"UTF-8");
//            for(String s:list){
//                System.out.println(s);
//            }
        } catch (Exception e) {
            System.out.println("发送 POST 请求出现异常!"+e);
            e.printStackTrace();
        }
        //使用finally块来关闭输出流、输入流
        finally{
            try{
                if(out!=null){
                    out.close();
                }
                if(in!=null){
                    in.close();
                }
            }
            catch(Exception ex){
                ex.printStackTrace();
            }
        }
        return result;
    }

    public static void main(String[] args) {
        //发送 GET 请求
//        String s=HttpRequest.sendGet("http://www.baidu.com", "key=123&v=456");
//        System.out.println(s);

        //发送 POST 请求
        String sr=HttpRequest.sendPost("http://192.168.200.66/zabbix/screens.php", "ddreset=1");
        System.out.println(sr);
    }
}

二、使用org.apache.http包下的HttpClient发送GET/POST请求
HttpClient相比传统JDK自带的URLConnection,增加了易用性和灵活性。它不仅是客户端发送Http请求变得容易,而且也方便了开发人员测试接口(基于Http协议的),即提高了开发的效率,也方便提高代码的健壮性。
1、HttpClient发送get请求(无参数)详细步骤
1). 创建HttpClient对象

            CloseableHttpClient httpclient = HttpClients.createDefault();

2). 创建请求方法的实例,并指定请求URL

            HttpGet get = new HttpGet("http://www.baidu.com");  

3). 调用HttpClient对象的execute(HttpUriRequest request)发送请求,该方法返回一个HttpResponse。

            CloseableHttpResponse response= httpclient.execute(get);

4).获取get请求的响应结果.调用HttpResponse的getEntity()方法可获取HttpEntity对象,该对象包装了服务器的响应内容

            HttpEntity entity = response.getEntity();

获取响应状态

 int code = response.getStatusLine().getStatusCode();
 System.out.println(" code "+code);

5).通过BufferedReader输入流读取响应结果

            BufferedReader  in = new BufferedReader(
                    new InputStreamReader(entity.getContent(),"UTF-8"));
            String line;
            String result="";
            while ((line = in.readLine()) != null) {
                result += line+"\n";
            }
            System.out.println(result);
  可以使用工具类IOUtils的toString方法获取响应结果.
           List<String> list = IOUtils.readLines(entity.getContent(),"UTF-8");
            for(String s:list){
                System.out.println(s);
            }
   或者:
      result=IOUtils.toString(entity.getContent(),"utf-8");
   可以使用EntityUtils的toString方法获取响应结果.(推荐使用)
           if(entity!=null){
                System.out.println(EntityUtils.toString(entity));
            }

6).释放连接,无论执行方法是否成功,都必须释放连接
完整代码:

package com.sc.http;
import java.io.IOException;
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 HttpClientTest2 {

    public static void main(String[] args)  {
        CloseableHttpClient httpclient = HttpClients.createDefault();

        CloseableHttpResponse response = null;
        HttpEntity  entity=null;
        try {
            HttpGet get = new HttpGet("http://www.baidu.com");
            response = httpclient.execute(get);
            entity = response.getEntity();
            int code = response.getStatusLine().getStatusCode();
            System.out.println(" code "+code);
            if(entity!=null){
                System.out.println(EntityUtils.toString(entity));
            }
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }finally {
            try {
                EntityUtils.consume(entity);
                httpclient.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

2、HttpClient发送post请求详细步骤
1). 创建HttpClient对象

            CloseableHttpClient httpclient = HttpClients.createDefault();

2). 创建请求方法的实例,并指定请求URL

            HttpPost post = new HttpPost("http://123.58.251.183:8080/goods/UserServlet");

3). 创建HttpEntity,模拟一个表单,用于包装参数
POST请求,参数是放在body内,所以需要构建UrlEncodedFormEntity
而UrlEncodedFormEntity需要传入的参数类型为List且List中装入的是NameValuePair类型的集合
NameValuePair是一个接口,它的实现类是BasicNameValuePair
BasicNameValuePair类的构造方法中需要传入两个参数key,value

            List<NameValuePair> list = new ArrayList<NameValuePair>();
            list.add(new BasicNameValuePair("method","loginMobile"));
            list.add(new BasicNameValuePair("loginname","abc"));
            list.add(new BasicNameValuePair("loginpass","abc"));
            HttpEntity postEntity = new UrlEncodedFormEntity(list);
            post.setEntity(postEntity);

4). 若需要使用例如Fidder工具抓包,就需要设置代理.(无需抓包时,可省略此步)

            HttpHost proxy = new HttpHost("127.0.0.1", 8888, "http");
            RequestConfig config = RequestConfig.custom().setProxy(proxy).build();
            post.setConfig(config);

5). 调用HttpClient对象的execute(HttpUriRequest request)发送请求,该方法返回一个HttpResponse。

            CloseableHttpResponse response= httpclient.execute(get);

6).获取get请求的响应结果.调用HttpResponse的getEntity()方法可获取HttpEntity对象,该对象包装了服务器的响应内容

            HttpEntity entity = response.getEntity();

获取响应状态

 int code = response.getStatusLine().getStatusCode();
 System.out.println(" code "+code);

7).通过BufferedReader输入流读取响应结果

            BufferedReader  in = new BufferedReader(
                    new InputStreamReader(entity.getContent(),"UTF-8"));
            String line;
            String result="";
            while ((line = in.readLine()) != null) {
                result += line+"\n";
            }
            System.out.println(result);
  可以使用工具类IOUtils的toString方法获取响应结果.
           List<String> list = IOUtils.readLines(entity.getContent(),"UTF-8");
            for(String s:list){
                System.out.println(s);
            }
   或者:
          result=IOUtils.toString(entity.getContent(),"utf-8");
   可以使用EntityUtils的toString方法获取响应结果.(推荐使用)
           if(entity!=null){
                System.out.println(EntityUtils.toString(entity));
            }

8).释放连接,无论执行方法是否成功,都必须释放连接

        EntityUtils.consume(httpEntity);
            closeableHttpClient.close();

完整代码:

package com.sc.http;

import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.apache.http.HttpEntity;
import org.apache.http.HttpHost;
import org.apache.http.NameValuePair;
import org.apache.http.client.config.RequestConfig;
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 HttpClientTest3 {

    public static void main(String[] args) {
        CloseableHttpClient closeableHttpClient = HttpClients.createDefault();
        HttpPost post = new HttpPost("http://123.58.251.183:8080/goods/UserServlet");
        List<NameValuePair> list = new ArrayList<NameValuePair>();
        list.add(new BasicNameValuePair("method","loginMobile"));
        list.add(new BasicNameValuePair("loginname","abc"));
        list.add(new BasicNameValuePair("loginpass","abc"));

         HttpHost proxy = new HttpHost("127.0.0.1", 8888, "http");
          RequestConfig config = RequestConfig.custom().setProxy(proxy).build();

        HttpEntity httpEntity = null;
        try {
            HttpEntity postEntity = new UrlEncodedFormEntity(list);
            post.setEntity(postEntity);
            //post.setConfig(config);

            CloseableHttpResponse reponse = closeableHttpClient.execute(post);
            httpEntity= reponse.getEntity();
            System.out.println(EntityUtils.toString(httpEntity, "utf-8"));
        } catch (IOException e) {
            e.printStackTrace();
        }finally {
            try {
                EntityUtils.consume(httpEntity);
                closeableHttpClient.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,001评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,210评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,874评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,001评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,022评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,005评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,929评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,742评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,193评论 1 309
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,427评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,583评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,305评论 5 342
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,911评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,564评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,731评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,581评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,478评论 2 352