Java中的HTTP通信2-实战篇

如今成熟的应用必然离不开读写网络数据,而 HTTP 请求正式最普遍且常用的网络通信协议,所以掌握使用 Get 和 Post 方式进行 HTTP 通信十分必要。

核心内容:

  • 使用 HTTP 的 Get 方式与 Post 方式进行网络通信。
  • 使用 HttpClient 简化 HTTP 通讯操作。

一、使用 Http 的 Get 方式读取网络数据

简介:介绍使用Get方式与网络通信是最常见的 Http通信, 建立链接之后就可以通过输入流读取网络数据。
案例1: HTTP GET请求DEMO

package com.netease.hettpdemo;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;

/**
* HTTP GET请求DEMO
*/
public class HTTPGetDemo {

    public static void main(String[] args) {
        new ReadByGet().start();
    }
}

class ReadByGet extends Thread{

    private static final String TEST_GET_URL="http://fanyi.youdao.com/openapi.do?wecome=";

    @Override
    public void run() {
        try {
            // 实例化URL对象
            URL url=new URL(TEST_GET_URL);
            // 建立并获取HTTP连接
            URLConnection connection= url.openConnection();
            // 获取输入流对象
            InputStream is=connection.getInputStream();
            // 指定解析输入流的编码格式
            InputStreamReader isr=new InputStreamReader(is,"UTF-8");
            // 缓存读取器
            BufferedReader br=new BufferedReader(isr);
            
            String line;
            StringBuilder builder=new StringBuilder();
            while ((line=br.readLine())!=null) {
                builder.append(line);
            }
            
            System.out.println(builder.toString());
            
            // 关闭各种流对象
            br.close();
            isr.close();
            is.close();
        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

二、使用 Http 的 Post 方式与网络交互通信

简介:Post 方式需要向网络传输一部分数据,所以同时具有输入流和输出流。本课时讲解使用 Http 的 Post 方式与网络交互通信。

案例2:HTTP POST请求DEMO

package com.netease.hettpdemo;

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;

public class HTTPPostDemo {

    public static void main(String[] args) {
        ReadByPost myThread=new ReadByPost();
        myThread.start();
    }

}

class ReadByPost extends Thread{
    @Override
    public void run() {
        try {
            // 实例化URL对象
            URL url=new URL("http://fanyi.youdao.com/openapi.do");
            HttpURLConnection connection=(HttpURLConnection)url.openConnection();
            connection.setRequestProperty("encoding", "UTF-8");
            // 设置允许该连接从网络中获取数据
            connection.setDoInput(true);
            // 设置允许该连接向网络传输数据
            connection.setDoOutput(true);
            // 设置请求方法
            connetion.setRequestMethod("POST");
            
            // 设置请求体
            OutputStream os=connection.getOutputStream();
            OutputStreamWriter isw=new OutputStreamWriter(os, "UTF-8");
            BufferedWriter bw=new BufferedWriter(isw);
            
            bw.write("keyform=testHttpGet&key=850021564&type=data&doctype=xml&version=1.1&q=good");
            bw.flush();
            
            // 处理返回结果
            InputStream is=connection.getInputStream();
            InputStreamReader isr=new InputStreamReader(is,"UTF-8");
            BufferedReader br=new BufferedReader(isr);
            
            // 输出响应结果
            String line;
            while((line=br.readline())!=null){
                System.out.println(line);
            }
            
            // 释放资源
            is.close();
            isr.close();
            br.close();
            os.close();
            isw.close();
            bw.close();
        } catch (MalformedURLException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
}

三、使用HttpClient进行Get方式通信

maven导包:

<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
<dependency>
    <groupId>org.apache.httpcomponents</groupId>
    <artifactId>httpclient</artifactId>
    <version>4.5.2</version>
</dependency>

案例3:HttpClient GET请求DEMO

public static final PoolingHttpClientConnectionManager CONN_MANAGER = new PoolingHttpClientConnectionManager();
public static final CloseableHttpClient HTTP_CLIENT;
public static final RequestConfig DEFAULT_REQUEST_CONFIG;

static {
    CONN_MANAGER.setMaxTotal(200); // 整个连接管理器的最大连接数设
    CONN_MANAGER.setDefaultMaxPerRoute(25); // 每个目标主机的最大连接数
    HTTP_CLIENT = HttpClients.custom().setConnectionManager(CONN_MANAGER).build();
    DEFAULT_REQUEST_CONFIG = RequestConfig.custom().setSocketTimeout(10000).setConnectTimeout(3000).build();//设置请求和传输超时时间
}

/**
 * HTTP Get请求
 * @param url 请求的URL地址
 * @param timeout 超时时间
 * @return
 */
public static String sendGet(String url, int timeout) {
    HttpGet httpget = new HttpGet(url);
    if (timeout > 0) {
        httpget.setConfig(RequestConfig.custom().setSocketTimeout(timeout).setConnectTimeout(timeout).build());
    } else {
        httpget.setConfig(DEFAULT_REQUEST_CONFIG);
    }

    HttpEntity entity = null;
    CloseableHttpResponse httpResponse=null;
    try {
        httpResponse = HTTP_CLIENT.execute(httpget);
        entity = httpResponse.getEntity();
        String content = EntityUtils.toString(entity, Charset.forName("UTF-8"));
        return content;
    } catch (Exception e) {
        throw new RuntimeException("failed to get!", e);
    } finally {
        if (entity != null) {
            try {
                EntityUtils.consume(entity);
            } catch (IOException e) {
                LOG.error(e);
            }
        }
        if(httpResponse!=null){
            try {
                httpResponse.close();
            } catch (IOException e) {
                LOG.error(e);
            }
        }
            
    }
}

四、使用 HttpClient 进行 Post 方式通信

maven导包:

<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
<dependency>
    <groupId>org.apache.httpcomponents</groupId>
    <artifactId>httpclient</artifactId>
    <version>4.5.2</version>
</dependency>

案例4:HttpClient POST请求DEMO

public static final PoolingHttpClientConnectionManager CONN_MANAGER = new PoolingHttpClientConnectionManager();
public static final CloseableHttpClient HTTP_CLIENT;
public static final RequestConfig DEFAULT_REQUEST_CONFIG;

static {
    CONN_MANAGER.setMaxTotal(200); // 整个连接管理器的最大连接数设
    CONN_MANAGER.setDefaultMaxPerRoute(25); // 每个目标主机的最大连接数
    HTTP_CLIENT = HttpClients.custom().setConnectionManager(CONN_MANAGER).build();
    DEFAULT_REQUEST_CONFIG = RequestConfig.custom().setSocketTimeout(10000).setConnectTimeout(3000).build();//设置请求和传输超时时间
}

/**
 * 指定header的HTTP POST请求
 * @param url 请求的URL地址
 * @param params body参数
 * @param headMap header参数
 * @param timeout 超时时间
 * @return
 */
public static String sendPost(String url, Map<String, String> params, Map<String, String> headMap, int timeout) {
    HttpPost httpPost = new HttpPost(url);
    httpPost.setConfig(DEFAULT_REQUEST_CONFIG);

    List<NameValuePair> nvps = new ArrayList<NameValuePair>();
    if (params != null) {
        for (Entry<String, String> e : params.entrySet()) {
            nvps.add(new BasicNameValuePair(e.getKey(), e.getValue()));
        }
    }
    httpPost.setEntity(new UrlEncodedFormEntity(nvps, Charset.forName("UTF-8")));
    
    if (headMap != null) {
        for(Map.Entry<String, String> head : headMap.entrySet()) {
            httpPost.addHeader(head.getKey(), head.getValue());
        }
    }

    HttpEntity entity = null;
    CloseableHttpResponse httpResponse = null;
    try {
        httpResponse = HTTP_CLIENT.execute(httpPost);
        entity = httpResponse.getEntity();
        String content = EntityUtils.toString(entity, Charset.forName("UTF-8"));
        return content;
    } catch (Exception e) {
        throw new RuntimeException("failed to post!", e);
    } finally {
        if (entity != null) {
            try {
                EntityUtils.consume(entity);
            } catch (IOException e) {
                LOG.error(e);
            }
        }
        if(httpResponse!=null){
            try {
                httpResponse.close();
            } catch (IOException e) {
                LOG.error(e);
            }
        }
            
    }
}

五、参考链接:

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

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,647评论 18 139
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,988评论 25 707
  • 1、通过CocoaPods安装项目名称项目信息 AFNetworking网络请求组件 FMDB本地数据库组件 SD...
    阳明先生_X自主阅读 15,979评论 3 119
  • iPhone一年一新,也一岁一枯荣。 新款iPhone并没有太多新的科技含量,而且因为高昂的价格引发了众人的吐槽。...
    liuzesheng阅读 521评论 5 8
  • Linux里的双引号、单引号和反向单引号有不同的用法,不好记忆,这里总结一下。 单引号'' 单引号是一个强引用的符...
    姜饼人_9e7b阅读 1,363评论 0 0