首頁 > 軟體

Android中HttpURLConnection類使用介紹

2022-12-15 14:03:43

Http協定的認識:

Android中傳送http網路請求是很常見的,要有GET請求和POST請求。一個完整的http請求需要經歷兩個過程:使用者端傳送請求到伺服器,然後伺服器將結果返回給使用者端。

GET表示希望從伺服器那裡獲取資料,而POST則表示希望提交資料給伺服器。

通過Http存取網路的三個步驟:

1、傳送http請求

2、接受服務響應

3、解析返回資料

HttpURLConnection類位於java.net包中,它用於傳送HTTP請求和獲取HTTP響應。

話不多說,直接上程式碼:

首先建立一個安卓專案。在xml中編寫如下程式碼:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">
    <Button
        android:id="@+id/button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="獲取"
        />
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        >
        <TextView
            android:id="@+id/response"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            />
    </ScrollView>
</LinearLayout>

ScrollView是可供使用者捲動的層次結構佈局容器,允許顯示比實際多的內容,藉助ScrollView控制元件,我們就可以以捲動的形式檢視螢幕外的那部分內容。

上面的程式碼主要是實現,當點選按鈕時,下面的捲動檢視將展示其內容。

在java中編寫如下程式碼:

public class MainActivity extends AppCompatActivity {
   TextView response;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Button button=(Button)findViewById(R.id.button);
        response=(TextView)findViewById(R.id.response);
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                new Thread(new Runnable() {
                    @Override
                    public void run() {
                        try {
                            URL url=new URL("http://www.baidu.com");
                            HttpURLConnection connection=(HttpURLConnection)url.openConnection();
                            connection.setRequestMethod("GET");
                          InputStream inputStream=connection.getInputStream();
                          BufferedReader reader=new BufferedReader(new InputStreamReader(inputStream));
                          StringBuilder stringBuilder=new StringBuilder();
                          String Line;
                          while ((Line=reader.readLine())!=null){
                              stringBuilder.append(Line);
                          }
                          show(stringBuilder);
                        } catch (MalformedURLException e) {
                            e.printStackTrace();
                        } catch (IOException e) {
                            e.printStackTrace();
                        }
                    }
                }).start();
            }
        });
    }
    private void show(final StringBuilder stringBuilder) {
        runOnUiThread(new Runnable() {
            @Override
            public void run() {
                response.setText(stringBuilder);
            }
        });
    }
}

首先需要獲取到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”);

之後在呼叫getInputStream()方法就可以獲取到伺服器返回的輸入流了,剩下的任務就是對輸入流進行讀取。

最後別忘了在AndroidManifest.xml中宣告一下網路許可權和新增如下程式碼(不加就會有錯誤):

android:usesCleartextTraffic="true"

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.http4">
<uses-permission android:name="android.permission.INTERNET"/>
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:usesCleartextTraffic="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

效果圖如下所示:

到此這篇關於Android中HttpURLConnection類使用介紹的文章就介紹到這了,更多相關Android HttpURLConnection內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com