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

溫馨提示×

溫馨提示×

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

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

Android中怎么利用HttpURLConnection訪問網絡

發布時間:2021-06-28 18:06:51 來源:億速云 閱讀:225 作者:Leah 欄目:移動開發

Android中怎么利用HttpURLConnection訪問網絡,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

一、 HttpURLConnection以GET方式訪問網絡:

HttpURLConnection connection = null;
try {
 URL url = new URL("https://www.xxx.com/");
 connection = (HttpURLConnection) url.openConnection();
 connection.setRequestMethod("GET");//設置訪問方式為“GET”
 connection.setConnectTimeout(8000);//設置連接服務器超時時間為8秒
 connection.setReadTimeout(8000);//設置讀取服務器數據超時時間為8秒

 if (HttpURLConnection.HTTP_OK == connection.getResponseCode()) {
  //從服務器獲取響應并把響應數據轉為字符串打印
  InputStream in = connection.getInputStream();
  BufferedReader reader = new BufferedReader(new InputStreamReader(in));

  StringBuilder response = new StringBuilder();
  String line;
  while (null != (line = reader.readLine())) {
    response.append(line);
  }
  Log.d(TAG, response.toString());
 }
} catch (Exception e) {
 e.printStackTrace();
} finally {
 if (null!= connection) {
   connection.disconnect();
 }
}

二、 HttpURLConnection以POST方式訪問網絡:

HttpURLConnection connection = null;
  try{
   URL url = new URL("https://www.xxx.com/");
   connection = (HttpURLConnection) url.openConnection();

   connection.setRequestMethod("POST");
   connection.setConnectTimeout(8000);
   connection.setReadTimeout(8000);
   connection.setDoOutput(true);// 使用 URL 連接進行輸出
   connection.setDoInput(true);// 使用 URL 連接進行輸入
   connection.setUseCaches(false);// 忽略緩存

   // 建立輸出流,并寫入數據
   OutputStream outputStream = connection.getOutputStream();
   DataOutputStream dataOutputStream = new DataOutputStream(outputStream);
   dataOutputStream.writeBytes("username=admin&password=888888");
   dataOutputStream.close();

   if (HttpURLConnection.HTTP_OK == connection.getResponseCode()) {
    // 當正確響應時處理數據
    StringBuffer response = new StringBuffer();
    String line;
    BufferedReader responseReader = 
      new BufferedReader(new InputStreamReader(connection.getInputStream(), "utf-8"));
    // 處理響應流,必須與服務器響應流輸出的編碼一致
    while (null != (line = responseReader.readLine())) {
     response.append(line);
    }
    responseReader.close();
    Log.d(TAG, response.toString());
   }

  } catch (Exception e) {
   e.printStackTrace();
  } finally {
   if (null!= connection) {
    connection.disconnect();
   }
  }

注意:

1. HTTP訪問是不允許在主線程進行的,否則會報錯。因此上面的操作應該在新線程中進行。

2. 一般要用HttpURLConnection.getResponseCode() == 200來判斷是否正常響應。為true則正常響應。

3. 在Android 2.2及以下版本,使用的是HttpClient,Android 2.3及以上版本,使用的是HttpURLConnection,而Android5.1之后廢棄了HttpClient的相關Api。因此HttpClient用法不再進行研究。

4. 以POST方式提交數據時,每條數據要以鍵值對的方式提交,各條數據之間以&隔開。比如上面的代碼中dataOutputStream.writeBytes(“username=admin&password=888888”);

5. 上面用到了StringBuilder和StringBuffer,沒有什么特別用意,只是順便用下。StringBuilder在單線程下比StringBuffer更高效,但不是線程安全的。

關于Android中怎么利用HttpURLConnection訪問網絡問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

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

AI

星座| 广安市| 临泽县| 厦门市| 石首市| 泗洪县| 营口市| 嵊泗县| 呼玛县| 罗定市| 怀集县| 深泽县| 临桂县| 达拉特旗| 扎囊县| 读书| 庆元县| 龙川县| 海晏县| 萨迦县| 阿克陶县| 清河县| 额济纳旗| 漳州市| 海兴县| 朔州市| 正定县| 自治县| 阿图什市| 罗定市| 铜陵市| 绥化市| 河间市| 南华县| 桦甸市| 克拉玛依市| 丽江市| 龙岩市| 开江县| 佳木斯市| 许昌县|