使用HttpURLConnection访问网络--android 第一行代码

在以前,Android发送HTTP请求一般有两种方式,HttpURLConnection和HttpClient。但是由于后者使用起来过于麻烦(API数量过多,扩展困难等),然后在Android6.0系统中,HttpClient功能完全被移除。

HttpURLConnection使用方法比较简单,步骤如下:

  1. 如果使用HttpURLConnection当然少不了先获取他的实例了。
  2. 实例获取成功之后,设置一下HTTP请求所使用的方法,常用的方法有GET、POST。GET表示从服务器获取数据,POST表示提交数据到服务器。
  3. 然后设置连接服务器时的一些相关要求,比如设置连接超时,读取超时,等一些相关设置,可自定义加入。
  4. 调用getInputStream()方法获取从服务器返回来的输入流,读取输入流。
  5. 调用disconnect()方法将HTTP连接关掉。

基本就是以上的这些,详细看下方代码,步骤我会注释在代码之中。

演示结果如下:

使用HttpURLConnection访问网络--android 第一行代码_第1张图片使用HttpURLConnection访问网络--android 第一行代码_第2张图片

 

上边就是运行结果,下面我们来看一下代码。

首先创建一个NetworkText项目,然后修改布局

activity_main.xml代码如下



 

解释一下,ScrollView控件作用是由于手机屏幕大小一定的,有时会出现内容过多一部分内容显示不下,然后这个控件提供了滚动功能。用于查看屏幕以外的内容。TextView用于显示返回来的数据。

MainActivity中的代码如下:


public class MainActivity extends AppCompatActivity {
    TextView responseText;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Button button = findViewById(R.id.send_request);
         responseText = findViewById(R.id.response_text);
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                sendRequestWithHttpURLConnection();
            }
        });

    }

    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");                       //设置Http请求使用方法
                    connection.setConnectTimeout(8000);                        //设置连接时的相关要求
                    connection.setReadTimeout(8000);
                    InputStream inputStream = connection.getInputStream();         //获取服务器返回的输入流

                    //对上面读取到的数据进行读取
                    reader = new BufferedReader(new InputStreamReader(inputStream));
                    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();            //使用完关掉HTTP连接
                    }
                }
            }
        }).start();
    }

    private void showResponse(final String response) {
        runOnUiThread(new Runnable() {
            @Override
            public void run() {
                //开线程进行UI操作,将结果显示到界面上
                responseText.setText(response);
            }
        });
    }
}

都写完了以后还要注意因为这个程序需要访问网络,所以要添加网络权限。在AndroidManifest中加入

    

这样这个程序就完成了。

你可能感兴趣的:(Android)