服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - Android客户端post请求服务器端实例

Android客户端post请求服务器端实例

2021-03-24 16:00Android开发网 Android

这篇文章主要介绍了Android客户端post请求服务器端实例,本文讲解了Android客户端与服务器端通信方式、解析服务器端返回数据的解释、用GET和POST访问http资源等内容,并给出了一个POST实例,需要的朋友可以参考下

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则没有此限制。

Android客户端post请求服务器端实例

注意:考虑到POST的优势,在Android开发中自己认为最好用POST的请求方式,所以下面自己写了一个小的POST请求的例子。代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
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<NameValuePair> list = new ArrayList<NameValuePair>();
    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<NameValuePair> 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;
 
  }
 
}

 

延伸 · 阅读

精彩推荐