Android提交資料到伺服器的兩種方式四種方法
Android應用開發中,會經常要提交資料到伺服器和從伺服器得到資料,本文主要是給出了利用http協議採用HttpClient方式向伺服器提交資料的方法。
/**
* @author Dylan
* 本類封裝了Android中向web伺服器提交資料的兩種方式四種方法
*/
public class SubmitDataByHttpClientAndOrdinaryWay {
/**
* 使用get請求以普通方式提交資料
* @param map 傳遞進來的資料,以map的形式進行了封裝
* @param path 要求伺服器servlet的地址
* @return 返回的boolean型別的引數
* @throws Exception
*/
public Boolean submitDataByDoGet(Map<String, String> map, String path) throws Exception {
// 拼湊出請求地址
StringBuilder sb = new StringBuilder(path);
sb.append("?");
for (Map.Entry<String, String> entry : map.entrySet()) {
sb.append(entry.getKey()).append("=").append(entry.getValue());
sb.append("&");
}
sb.deleteCharAt(sb.length() - 1);
String str = sb.toString();
System.out.println(str);
URL Url = new URL(str);
HttpURLConnection HttpConn = (HttpURLConnection) Url.openConnection();
HttpConn.setRequestMethod("GET");
HttpConn.setReadTimeout(5000);
// GET方式的請求不用設定什麼DoOutPut()之類的嗎?
if (HttpConn.getResponseCode() == HttpURLConnection.HTTP_OK) {
return true;
}
return false;
}
/**
* 普通方式的DoPost請求提交資料
* @param map 傳遞進來的資料,以map的形式進行了封裝
* @param path 要求伺服器servlet的地址
* @return 返回的boolean型別的引數
* @throws Exception
*/
public Boolean submitDataByDoPost(Map<String, String> map, String path) throws Exception {
// 注意Post地址中是不帶引數的,所以newURL的時候要注意不能加上後面的引數
URL Url = new URL(path);
// Post方式提交的時候引數和URL是分開提交的,引數形式是這樣子的:name=y&age=6
StringBuilder sb = new StringBuilder();
// sb.append("?");
for (Map.Entry<String, String> entry : map.entrySet()) {
sb.append(entry.getKey()).append("=").append(entry.getValue());
sb.append("&");
}
sb.deleteCharAt(sb.length() - 1);
String str = sb.toString();
HttpURLConnection HttpConn = (HttpURLConnection) Url.openConnection();
HttpConn.setRequestMethod("POST");
HttpConn.setReadTimeout(5000);
HttpConn.setDoOutput(true);
HttpConn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
HttpConn.setRequestProperty("Content-Length", String.valueOf(str.getBytes().length));
OutputStream os = HttpConn.getOutputStream();
os.write(str.getBytes());
if (HttpConn.getResponseCode() == HttpURLConnection.HTTP_OK) {
return true;
}
return false;
}
/**
* 以HttpClient的DoGet方式向伺服器傳送請資料
* @param map 傳遞進來的資料,以map的形式進行了封裝
* @param path 要求伺服器servlet的地址
* @return 返回的boolean型別的引數
* @throws Exception
*/
public Boolean submitDataByHttpClientDoGet(Map<String, String> map, String path) throws Exception {
HttpClient hc = new DefaultHttpClient();
// 請求路徑
StringBuilder sb = new StringBuilder(path);
sb.append("?");
for (Map.Entry<String, String> entry : map.entrySet()) {
sb.append(entry.getKey()).append("=").append(entry.getValue());
sb.append("&");
}
sb.deleteCharAt(sb.length() - 1);
String str = sb.toString();
System.out.println(str);
HttpGet request = new HttpGet(sb.toString());
HttpResponse response = hc.execute(request);
if (response.getStatusLine().getStatusCode() == HttpURLConnection.HTTP_OK) {
return true;
}
return false;
}
/**
* 以HttpClient的DoPost方式提交資料到伺服器
* @param map 傳遞進來的資料,以map的形式進行了封裝
* @param path 要求伺服器servlet的地址
* @return 返回的boolean型別的引數
* @throws Exception
*/
public Boolean submintDataByHttpClientDoPost(Map<String, String> map, String path) throws Exception {
// 1. 獲得一個相當於瀏覽器物件HttpClient,使用這個介面的實現類來建立物件,DefaultHttpClient
HttpClient hc = new DefaultHttpClient();
// DoPost方式請求的時候設定請求,關鍵是路徑
HttpPost request = new HttpPost(path);
// 2. 為請求設定請求引數,也即是將要上傳到web伺服器上的引數
List<NameValuePair> parameters = new ArrayList<NameValuePair>();
for (Map.Entry<String, String> entry : map.entrySet()) {
NameValuePair nameValuePairs = new BasicNameValuePair(entry.getKey(), entry.getValue());
parameters.add(nameValuePairs);
}
// 請求實體HttpEntity也是一個介面,我們用它的實現類UrlEncodedFormEntity來建立物件,注意後面一個String型別的引數是用來指定編碼的
HttpEntity entity = new UrlEncodedFormEntity(parameters, "UTF-8");
request.setEntity(entity);
// 3. 執行請求
HttpResponse response = hc.execute(request);
// 4. 通過返回碼來判斷請求成功與否
if (response.getStatusLine().getStatusCode() == HttpURLConnection.HTTP_OK) {
return true;
}
return false;
}
}
相關文章
- 提交資料四種方式
- 提交Application的兩種方式APP
- 整理post提交資料的四種解析方式
- 四種常見的 POST 提交資料方式
- Js提交表單的兩種方法JS
- Git提交程式碼倉庫的兩種方式Git
- [轉載]HTTP四種常見的POST提交資料方式HTTP
- Express 提交資料的幾種方式Express
- 三種 Post 提交資料方式
- Android 以OKhttp + Gson 提交資料到伺服器AndroidHTTP伺服器
- Android資料傳遞的四種方法Android
- Oracle資料庫伺服器的兩種連線方式Oracle資料庫伺服器
- React元件方法的兩種定義方式React元件
- Android的activity的四種啟動方式Android
- 兩種方式配置vue全域性方法Vue
- 【Spark篇】---Spark中yarn模式兩種提交任務方式SparkYarn模式
- Android中Activity的四種啟動方式Android
- Android非同步更新UI的四種方式Android非同步UI
- 伺服器遷移的兩種方式淺談伺服器
- 三種Ext提交資料的方法(轉)
- 兩種啟動資料庫的方式資料庫
- 兩種方式建立sqlserver連結伺服器SQLServer伺服器
- 四種XML操作方式的基本使用方法XML
- ChatTTS的兩種使用方式TTS
- OAuth 2.0 的四種方式OAuth
- CSS的四種引入方式CSS
- JS 垃圾回收的兩種方式JS
- Docker打包映象的兩種方式Docker
- sparkrdd轉dataframe的兩種方式Spark
- 建立Session物件的兩種方式Session物件
- SMSSDK的Unity3D的兩種整合方式-AndroidUnity3DAndroid
- 實現web資料同步的四種方式Web
- Oracle資料庫的四種啟動方式Oracle資料庫
- 兩個數換值四種方法實現
- 連結提交工具中四種提交方法對比(附安裝使用方法)
- Spark的四種部署方式概括Spark
- Java 建立類的四種方式Java
- mysql啟動的四種方式MySql