Android网络技术HttpURLConnection Android网络技术HttpURLConnection详解

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

Android网络技术HttpURLConnection Android网络技术HttpURLConnection详解

卡麦哈麦哈   2021-03-23 我要评论
想了解Android网络技术HttpURLConnection详解的相关内容吗,卡麦哈麦哈在本文为您仔细讲解Android网络技术HttpURLConnection的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Android,网络技术,HttpURLConnection,下面大家一起来学习吧。

介绍

早些时候,Android 上发送 HTTP 请求一般有 2 种方式:HttpURLConnection 和 HttpClient。不过由于 HttpClient 存在 API 数量过多、扩展困难等缺点,Android 团队越来越不建议我们使用这种方式。在 Android 6.0 系统中,HttpClient 的功能被完全移除了。因此,在这里我们只简单介绍HttpURLConnection 的使用。
代码 (核心部分,目前只演示 GET 请求):

 1. Manifest.xml 中添加网络权限:<uses-permission android:name="android.permission.INTERNET">

2. 在子线程中发起网络请求:

new Thread(new Runnable() {
          @Override
          public void run() {
            doRequest();
          }
        }).start();
//发起网络请求        
private void doRequest() {
  HttpURLConnection connection = null;
  BufferedReader reader = null;
  try {
    //1.获取 HttpURLConnection 实例.注意要用 https 才能获取到结果!
    URL url = new URL("https://www.baidu.com");
    connection = (HttpURLConnection) url.openConnection();
    //2.设置 HTTP 请求方式
    connection.setRequestMethod("GET");
    //3.设置连接超时和读取超时的毫秒数
    connection.setConnectTimeout(5000);
    connection.setReadTimeout(5000);
    //4.获取服务器返回的输入流
    InputStream inputStream = connection.getInputStream();
    //5.对获取的输入流进行读取
    reader = new BufferedReader(new InputStreamReader(inputStream));
    final StringBuilder response = new StringBuilder();
    String line;
    while ((line = reader.readLine()) != null) {
      response.append(line);
    }
    //然后处理读取到的信息 response。返回的结果是 HTML 代码,字符非常多。
    runOnUiThread(new Runnable() {
      @Override
      public void run() {
        tvResponse.setText(response.toString());

      }
    });
  } catch (MalformedURLException e) {
    e.printStackTrace();
  } catch (IOException e) {
    e.printStackTrace();
  } finally {
    if (reader != null) {
      try {
        reader.close();
      } catch (IOException e) {
        e.printStackTrace();
      }
    }
    if (connection != null) {
      connection.disconnect();
    }
  }
}

效果图:

源码下载地址:HttpURLConnection

本例子参照《第一行代码 Android 第 2 版》

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们