Android 執行 HTTP GET 請求

MainActivity 中只有一個 TextView 用於輸出 GET 請求的結果:java

import androidx.appcompat.app.AppCompatActivity;

import android.os.AsyncTask;
import android.os.Bundle;
import android.widget.TextView;

import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;

public class MainActivity extends AppCompatActivity {
    TextView textView1;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        textView1 = findViewById(R.id.textView1);
        AsyncGetHttp task_get = new AsyncGetHttp();
        task_get.execute("https://www.baidu.com");
    }

    class AsyncGetHttp extends AsyncTask<String, Float, String> {
        HttpURLConnection connection = null;
        BufferedReader reader = null;

        @Override
        protected void onPreExecute() {
            // 任務剛開始的時候執行
        }

        @Override
        protected String doInBackground(String... params) {
            try {
                URL url = new URL(params[0]);
                connection = (HttpURLConnection) url.openConnection();
                // 不使用緩存
                connection.setUseCaches(false);
                // 應該指的是與服務器創建鏈接的最大時間
                connection.setConnectTimeout(1000);
                // 讀取數據的最大時間,兩個最大時間不要設置得過短,否則會很容易出現超時的異常
                connection.setReadTimeout(6000);
                // 若是不是正常的請求結果則拋出異常,注意獲取結果的步驟必定要在請求內容給完以後
                if (connection.getResponseCode() != 200) {
                    throw new Exception("http error:" + connection.getResponseCode() + "," + connection.getResponseMessage());
                }
                // 使用 InputStream 進行接收操做
                InputStream input = connection.getInputStream();
                reader = new BufferedReader(new InputStreamReader(input));
                StringBuilder response = new StringBuilder();
                // 這裏把 reader 中的內容一行行地讀取到 response 中
                String line;
                while ((line = reader.readLine()) != null) {
                    response.append(line);
                }
                // 返回最終的結果
                return response.toString();
            } catch (Exception ex) {
                // 返回錯誤消息
                return ex.getMessage();
            } finally {
                // 請求結束後釋放資源
                if (reader != null) {
                    try {
                        reader.close();
                    } catch (Exception ignore) {
                    }
                }
                if (connection != null) {
                    connection.disconnect();
                }
            }
        }

        @Override
        protected void onProgressUpdate(Float... progresses) {
            // 處理進度報告
        }

        @Override
        protected void onPostExecute(String result) {
            // 任務完成就會到此
            textView1.setText(result);
        }

        @Override
        protected void onCancelled() {
            // 主動取消任務
        }
    }
}

這裏定義了一個繼承自 AsyncTask 的內部類,使用內部類的緣由是在 AsyncTaskonPostExecute 回調方法中可以直接使用 MainActivity 建立時獲取的 TextView 對象。android

相關文章
相關標籤/搜索