27读书笔记之使用HTTP协议访问网络

来源:互联网 发布:jdk 8u111 linux x64 编辑:程序博客网 时间:2024/06/08 01:25

第九章

使用HTTP协议访问网络

使用HttpURLConnection

在过去,Android上发送HTTP请求有两种方式:HttpURLConnection和HttpClient。
不过由于HttpClient存在API数量过多,扩展困难等缺点,Android团队越来越不建议我们使用这种方式。终于在Android6.0系统中,HttpClient的功能被完全移除了,标志着此功能正式弃用。

首先需要获取到HttpURLConnection的实例,一般只需new出一个URL对象,并传入目标的网络地址,然后调用一下openConnection()方法即可,如下所示:

    URL url = new URL("http://www.baidu.com");    HttpURLConnection connection = (HttpURLConnection) url.openConnection();

在得到HttpURLConnection的实例之后,我们可以设置一下HTTP请求所使用的方法,常用的方法主要有两个,GET和POST。GET表示希望从服务器那里获取数据,而POST则表示希望提交数据给服务器。写法如下:
connection.setRequestMethod(“GET”);
接下来就可以进行一些自由的定制了,比如设置链接超时,读取超时的毫秒数,以及服务器希望得到的一些消息头等。这部分根据自己的实际情况进行编写,示例写法如下:

    connection.setConnectionTimeout(8000);    connection.setReadTimeout(8000);

之后再调用getInputStream()方法就可以获取到服务器返回的输入流了,剩下的任务就是对输入流进行读取,如下所示:

    InputStream in = connection.getInputStream();

最后可以调用disconnect()方法将这个HTTP链接关闭掉,如下所示:

    connection.disconnect();

下面通过例子体验HttpURLConnection的用法。新建一个NetworkTest项目,首先修改
activity_main.xml中代码

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:orientation="vertical"    android:layout_width="match_parent"    android:layout_height="match_parent">    <Button        android:id="@+id/send_request"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:text="Send Request"        />    <ScrollView        android:layout_width="match_parent"        android:layout_height="match_parent">        <TextView            android:id="@+id/response_text"            android:layout_width="match_parent"            android:layout_height="wrap_content" />    </ScrollView></LinearLayout>

crollView,借助它就可以滚动的形式查看屏幕外的那部分内容。另外,布局还放置了一个Button和一个TextView,Button用于发送HTTP请求,TextView用于将服务器返回的数据显示出来。

接着修改代码MainActivity中的代码,如下所示:

package net.nyist.lenovo.networktest;import android.support.v7.app.AppCompatActivity;import android.os.Bundle;import android.util.Log;import android.view.View;import android.widget.Button;import android.widget.TextView;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;import java.net.HttpURLConnection;import java.net.MalformedURLException;import java.net.URL;import okhttp3.OkHttpClient;import okhttp3.Request;import okhttp3.Response;public class MainActivity extends AppCompatActivity implements View.OnClickListener{    TextView responseText;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);        Button sendRequest = (Button) findViewById(R.id.send_request);        responseText = (TextView) findViewById(R.id.response_text);        sendRequest.setOnClickListener(this);    }    @Override    public void onClick(View v) {            if (v.getId()==R.id.send_request){                //sendRequestWithHttpURLConnection();                sendRequestWithOkHttp();            }    }    private void sendRequestWithOkHttp() {        new Thread(new Runnable() {            @Override            public void run() {                OkHttpClient client = new OkHttpClient();                Request request = new Request.Builder()                        .url("https://www.baidu.com")                        .build();                try {                    Response response = client.newCall(request).execute();                    String responseData = response.body().string();                    showResponse(responseData);                } catch (IOException e) {                    e.printStackTrace();                }            }        }).start();    }    private void sendRequestWithHttpURLConnection() {        //开启线程来发起网络请求        new Thread(new Runnable() {            @Override            public void run() {                HttpURLConnection connection = null;                BufferedReader reader = null;                try {                    URL url = new URL("https://www.baidu.com");                    connection =(HttpURLConnection) url.openConnection();                    connection.setRequestMethod("GET");                    connection.setConnectTimeout(8000);                    connection.setReadTimeout(8000);                    InputStream in = connection.getInputStream();                    //下面对获取到的输入流进行读取                    reader = new BufferedReader(new InputStreamReader(in));                    StringBuilder response = new StringBuilder();                    String line;                    while ((line = reader.readLine())!=null){                        response.append(line);                    }                    showResponse(response.toString());                } catch (Exception e) {                    e.printStackTrace();                }finally {                    if (reader != null){                        try {                            reader.close();                        } catch (IOException e) {                            e.printStackTrace();                        }                    }                    if (connection!=null){                        connection.disconnect();                    }                }            }        }).start();    }    private void showResponse(final String response) {        runOnUiThread(new Runnable() {            @Override            public void run() {                //在这里进行UI操作,将结果显示到界面上                responseText.setText(response);            }        });    }}

使用HTTP协议访问网络

原创粉丝点击