亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android使用URLConnection提交請求的實現

發布時間:2020-08-30 21:57:35 來源:腳本之家 閱讀:203 作者:_彼岸雨敲窗_ 欄目:移動開發

URL的openConnection()方法將返回一個URLConnection對象,該對象表示應用程序和URL之間的通信連接。程序可以通過URLConnection實例向該URL發送請求,讀取URL引用的資源。

通常創建一個和URL的連接,并發送請求、讀取此URL引用的資源需要如下幾個步驟:
Step1: 通過調用URL對象的openConnection()方法來創建URLConnection對象;
Step2:設置URLConnection的參數和普通請求屬性;
Step3:如果只是發送GET方式的請求,那么使用connect方法建立和遠程資源之間的實際連接即可;如果需要發送POST方式的請求,則需要獲取URLConnection實例對應的輸出流來發送請求參數;
Step4:遠程資源變為可用,程序可以訪問遠程資源的頭字段,或通過流入流讀取遠程資源的數據。

下面的程序Demo示范了如何向Web站點發送GET請求、POST請求,并從Web站點取得響應。該程序中用到一個GET、POST請求的工具類,該類代碼如下:

GetPostUtil.java邏輯代碼如下:

package com.fukaimei.getposttest;

import android.util.Log;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.URL;
import java.net.URLConnection;
import java.util.List;
import java.util.Map;

/**
 * Created by FuKaimei on 2017/10/2.
 */

public class GetPostUtil {

  private static final String TAG = "GetPostUtil";

  /**
   * 向指定URL發送GET方式的請求
   *
   * @param url  發送請求的URL
   * @param params 請求參數,請求參數應該是name1=value1 & name2=value2的形式
   * @return URL所代表遠程資源的響應
   */
  public static String sendGet(String url, String params) {
    String result = "";
    BufferedReader in = null;
    try {
      String urlName = url + "?" + params;
      URL realUrl = new URL(urlName);
      // 打開和URL之間的連接
      URLConnection conn = realUrl.openConnection();
      // 設置通用的請求屬性
      conn.setRequestProperty("accept", "*/*");
      conn.setRequestProperty("connection", "Keep-Alive");
      conn.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)");
      // 建立實際的連接
      conn.connect();
      // 獲取所有的響應頭字段
      Map<String, List<String>> map = conn.getHeaderFields();
      // 遍歷所有的響應頭字段
      for (String key : map.keySet()) {
        Log.d(TAG, key + "---->" + map.get(key));
      }
      // 定義BufferedReader輸入流來讀取URL的響應
      in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
      String line;
      while ((line = in.readLine()) != null) {
        result += "\n" + line;
      }
    } catch (Exception e) {
      Log.d(TAG, "發送GET請求出現異常!" + e);
      e.printStackTrace();
    } finally { // 使用finally塊來關閉輸入流
      try {
        if (in != null) {
          in.close();
        }
      } catch (IOException e) {
        e.printStackTrace();
      }
    }
    return result;
  }

  /**
   * 向指定URL發送POST方式的請求
   *
   * @param url  發送請求的URL
   * @param params 請求參數,請求參數應該是name1=value1 & name2=value2的形式
   * @return 所代表遠程資源的響應
   */
  public static String sendPost(String url, String params) {
    PrintWriter out = null;
    BufferedReader in = null;
    String result = "";
    try {
      URL realUrl = new URL(url);
      // 打開和URL之間的連接
      URLConnection conn = realUrl.openConnection();
      // 設置通用的請求屬性
      conn.setRequestProperty("accept", "*/*");
      conn.setRequestProperty("connection", "Keep-Alive");
      conn.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)");
      // 發送POST請求必須設置如下兩行
      conn.setDoOutput(true);
      conn.setDoInput(true);
      // 獲取URLConnection對象對應的輸出流
      out = new PrintWriter(conn.getOutputStream());
      // 發送請求參數
      out.print(params);
      // flush輸出流的緩存
      out.flush();
      // 定義BufferedReader輸入流來讀取URL的響應
      in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
      String line;
      while ((line = in.readLine()) != null) {
        result += "\n" + line;
      }
    } catch (Exception e) {
      Log.d(TAG, "發送POST請求出現異常!" + e);
      e.printStackTrace();
    } finally { // 使用finally塊來關閉輸出流、輸入流
      try {
        if (out != null) {
          out.close();
        }
        if (in != null) {
          in.close();
        }
      } catch (IOException e) {
        e.printStackTrace();
      }
    }
    return result;
  }
}

從上面的程序Demo可以看出,如果需要發送GET請求,只要調用URLConnection的connect()方法去建立實際的連接即可。如果需要發送POST請求,則需要獲取URLConnection的OutputStream,然后再向網絡中輸出請求參數。
提供了上面發送GET請求、POST請求的工具類之后,接下來就可以在Activity類中通過該工具類發送請求了。該程序的界面中包含兩個按鈕,一個按鈕用于發送GET請求,一個按鈕用于發送POST請求。程序還提供了一個EditText來顯示服務器的響應。

layout/activity_main.xml界面布局代碼如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical">

  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:orientation="horizontal">

    <Button
      android:id="@+id/get"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="發送GET請求" />

    <Button
      android:id="@+id/post"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="發送POST請求" />
  </LinearLayout>

  <TextView
    android:id="@+id/show"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffff"
    android:gravity="top"
    android:textColor="#f000"
    android:textSize="16sp" />
</LinearLayout>

MainActivity.java邏輯代碼如下:

package com.fukaimei.getposttest;

import android.os.Handler;
import android.os.Message;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity {

  Button get, post;
  TextView show;
  // 代表服務器響應的字符串
  String response;
  Handler handler = new Handler() {
    @Override
    public void handleMessage(Message msg) {
      if (msg.what == 0x123) {
        // 設置show控件服務器響應
        show.setText(response);
      }
    }
  };

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    get = (Button) findViewById(R.id.get);
    post = (Button) findViewById(R.id.post);
    show = (TextView) findViewById(R.id.show);
    get.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        new Thread() {
          @Override
          public void run() {
            response = GetPostUtil.sendGet("https://www.mi.com/", null);
            // 發送消息通知UI線程更新UI組件
            handler.sendEmptyMessage(0x123);
          }
        }.start();
      }
    });
    post.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        new Thread() {
          @Override
          public void run() {
            response = GetPostUtil.sendPost("http://172.xx.xx.xxx:8080/fukaimei/login.jsp", "name=android&pass=123");
          }
        }.start();
        // 發送消息通知UI線程更新UI組件
        handler.sendEmptyMessage(0x123);
      }
    });
  }
}

上面程序Demo中用于發送GET請求、POST請求。從上面的代碼可以發現,借助于URLConnection類的幫助,應用程序可以非常方便地與指定站點交換信息,包括發送GET請求、POST請求,并獲取網站的響應等。

注意:由于該程序需要訪問互聯網,因此還需要在清單文件AndroidManifest.xml文件中授權訪問互聯網的權限:

<!-- 授權訪問互聯網-->
  <uses-permission android:name="android.permission.INTERNET" />

Demo程序運行效果界面截圖如下:

Android使用URLConnection提交請求的實現Android使用URLConnection提交請求的實現

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

伊金霍洛旗| 历史| 花垣县| 滨海县| 顺昌县| 沭阳县| 洪泽县| 阿图什市| 正宁县| 九龙坡区| 集安市| 衡阳县| 辉县市| 保德县| 贡嘎县| 尖扎县| 禄丰县| 绥中县| 股票| 鹤庆县| 彩票| 南昌市| 车致| 胶州市| 岑溪市| 太原市| 扶风县| 潮安县| 新宾| 宝山区| 穆棱市| 云和县| 雅安市| 彭阳县| 理塘县| 吴堡县| 南溪县| 花莲市| 阜城县| 玛纳斯县| 阿合奇县|