Android客戶端請求伺服器端的詳細解釋
Android客戶端請求伺服器端的詳細解釋
1. Android客戶端與伺服器端通訊方式:
Android與伺服器通訊通常採用HTTP通訊方式和Socket通訊方式,而HTTP通訊方式又分get和post兩種方式。
2. 解析伺服器端返回資料的解釋:
(1).對於伺服器端來說,返回給客戶端的資料格式一般分為html、xml和json這三種格式。
(2). JSON(Javascript Object Notation)是一種輕量級的資料交換格式,相比於xml這種資料交換格式來說,因為解析xml比較的複雜,而且需要編寫大段的程式碼,所以客戶端和伺服器的資料交換格式往往通過JSON來進行交換。
3. Android中,用GET和POST訪問http資源
(1).客戶端向伺服器端傳送請求的時候,向伺服器端傳送了一個資料塊,也就是請求資訊。
(2). GET和POST區別:
A: GET請求請提交的資料放置在HTTP請求協議頭(也就是url)中,而POST提交的資料則放在實體資料中,安全性比較高。
B: GET方式提交的資料最多隻能有1024位元組,而POST則沒有此限制。
注意:考慮到POST的優勢,在Android開發中自己認為最好用POST的請求方式,所以下面自己寫了一個小的POST請求的例子。程式碼如下:
package com.scd.jsondemo.util;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.List;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.protocol.HTTP;
import org.apache.http.util.EntityUtils;
import org.json.JSONException;
import org.json.JSONObject;
public class JsonUtil {
/** 地址 */
private static final String INNER_URL = "http://localhost:8080/index2.jsp";
/** TAG */
private final String TAG = getClass().getSimpleName();
private static final int USER_ID = 1;
/***
* 客戶端呼叫的方法:傳遞引數向伺服器中傳送請求
*
* @param userId
* @param userName
* @return
*/
public static JSONObject getData(String userId, String userName) {
int modelId = USER_ID;
List list = new ArrayList();
list.add(new BasicNameValuePair("userId", userId));
list.add(new BasicNameValuePair("userName", userName));
return doPost(modelId, list);
}
/**
* 請求伺服器的方法
*
* @param model
* @param paramList
* @return
*/
private static JSONObject doPost(int model, List paramList) {
// 1.建立請求物件
HttpPost httpPost = new HttpPost(INNER_URL);
// post請求方式資料放在實體類中
HttpEntity entity = null;
try {
entity = new UrlEncodedFormEntity(paramList, HTTP.UTF_8);
httpPost.setEntity(entity);
} catch (UnsupportedEncodingException e1) {
e1.printStackTrace();
}
// 2.建立客戶端物件
HttpClient httpClient = new DefaultHttpClient();
// 3.客戶端帶著請求物件請求伺服器端
try {
// 伺服器端返回請求的資料
HttpResponse httpResponse = httpClient.execute(httpPost);
// 解析請求返回的資料
if (httpResponse != null
&& httpResponse.getStatusLine().getStatusCode() == 200) {
String element = EntityUtils.toString(httpResponse.getEntity(),
HTTP.UTF_8);
if (element.startsWith("{")) {
try {
return new JSONObject(element);
} catch (JSONException e) {
e.printStackTrace();
}
}
}
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
}
轉自http://www.2cto.com/kf/201506/404113.html
相關文章
- 服務端如何獲取客戶端請求IP地址服務端客戶端
- nginx 處理客戶端請求的完整過程Nginx客戶端
- 從客戶端向服務端發起請求(3種)客戶端服務端
- Go-Micro客戶端請求報500錯誤的解決方法Go客戶端
- 網站提示400 - 請求錯誤,伺服器無法理解客戶端的請求怎麼辦網站伺服器客戶端
- SpringBoot系列之服務端解析客戶端國際化請求Spring Boot服務端客戶端
- Curator(ZoooKeeper客戶端)使用詳解客戶端
- flutter版本的玩Android客戶端FlutterAndroid客戶端
- MQTT協議從服務端到客戶端詳解MQQT協議服務端客戶端
- Android so庫防客戶端破解的解決方案Android客戶端
- 細說後端模板渲染、客戶端渲染、node 中間層、伺服器端渲染(ssr)後端客戶端伺服器
- 技術基礎 | 改進版的Apache Cassandra客戶端請求路由Apache客戶端路由
- PostgreSQL客戶端處理事務功能詳解EGSQL客戶端
- GRPC Android客戶端演化史RPCAndroid客戶端
- 用whistle和proxifier抓包除錯任意客戶端的網路請求除錯客戶端
- Spring Security 實戰乾貨:客戶端OAuth2授權請求的Spring客戶端OAuth
- 跟著大彬讀原始碼 - Redis 2 - 伺服器如何響應客戶端請求?(上)原始碼Redis伺服器客戶端
- 跟著大彬讀原始碼 - Redis 3 - 伺服器如何響應客戶端請求?(下)原始碼Redis伺服器客戶端
- TodoKit客戶端/服務端原始碼都放出來了,有興趣的可以看看,請求指教客戶端服務端原始碼
- Easyvision中的伺服器與客戶端伺服器客戶端
- MQTT伺服器搭建服務端和客戶端MQQT伺服器服務端客戶端
- Redis 6.0 客戶端快取的伺服器端實現Redis客戶端快取伺服器
- 5. Spring Cloud OpenFeign 宣告式 WebService 客戶端的超詳細使用SpringCloudWeb客戶端
- 自己動手寫個 Android客戶端Android客戶端
- YouTube Vanced: 替代YouTube官方Android客戶端Android客戶端
- Flutter混合開發玩Android客戶端FlutterAndroid客戶端
- 服務端,客戶端服務端客戶端
- 客戶端,服務端客戶端服務端
- Spring Security 實戰乾貨:客戶端OAuth2授權請求的入口Spring客戶端OAuth
- 基於Microsoft visual c++ 6.0實現客戶端HTTP的Get、Post請求ROSC++客戶端HTTP
- 求一段python3服務端及客戶端的例子Python服務端客戶端
- Linux下簡單的ACE socket客戶端和伺服器端Linux客戶端伺服器
- 前後端資料互動(四)——fetch 請求詳解後端
- 支付寶客戶端架構解析:Android 客戶端啟動速度優化之「垃圾回收」客戶端架構Android優化
- 短影片原始碼,實現預處理防止客戶端頻繁請求原始碼客戶端
- dubbo客戶端客戶端
- Pulsar客戶端客戶端
- mqtt 客戶端MQQT客戶端
- Android客戶端專案元件化實踐Android客戶端元件化