Android 基础之网络技术-HttpURLConnection

来源:互联网 发布:axure8.0mac汉化版 编辑:程序博客网 时间:2024/05/17 02:36

介绍

  • 早些时候,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();        }    }}

效果图:

这里写图片描述

源码下载地址:http://download.csdn.net/detail/qq_19715721/9916266

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

原创粉丝点击