Android网络技术HttpURLConnection详解

时间:2022-07-27
本文章向大家介绍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 版》

以上就是本文的全部内容,希望对大家的学习有所帮助。