詳解Android提交數(shù)據(jù)到服務(wù)器的兩種方式四種方法
Android應(yīng)用開發(fā)中,會(huì)經(jīng)常要提交數(shù)據(jù)到服務(wù)器和從服務(wù)器得到數(shù)據(jù),本文主要是給出了利用http協(xié)議采用HttpClient方式向服務(wù)器提交數(shù)據(jù)的方法。
代碼比較簡單,這里不去過多的闡述,直接看代碼。
/**
* @author Dylan
* 本類封裝了Android中向web服務(wù)器提交數(shù)據(jù)的兩種方式四種方法
*/
public class SubmitDataByHttpClientAndOrdinaryWay {
/**
* 使用get請求以普通方式提交數(shù)據(jù)
* @param map 傳遞進(jìn)來的數(shù)據(jù),以map的形式進(jìn)行了封裝
* @param path 要求服務(wù)器servlet的地址
* @return 返回的boolean類型的參數(shù)
* @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方式的請求不用設(shè)置什么DoOutPut()之類的嗎?
if (HttpConn.getResponseCode() == HttpURLConnection.HTTP_OK) {
return true;
}
return false;
}
/**
* 普通方式的DoPost請求提交數(shù)據(jù)
* @param map 傳遞進(jìn)來的數(shù)據(jù),以map的形式進(jìn)行了封裝
* @param path 要求服務(wù)器servlet的地址
* @return 返回的boolean類型的參數(shù)
* @throws Exception
*/
public Boolean submitDataByDoPost(Map<String, String> map, String path) throws Exception {
// 注意Post地址中是不帶參數(shù)的,所以newURL的時(shí)候要注意不能加上后面的參數(shù)
URL Url = new URL(path);
// Post方式提交的時(shí)候參數(shù)和URL是分開提交的,參數(shù)形式是這樣子的: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方式向服務(wù)器發(fā)送請數(shù)據(jù)
* @param map 傳遞進(jìn)來的數(shù)據(jù),以map的形式進(jìn)行了封裝
* @param path 要求服務(wù)器servlet的地址
* @return 返回的boolean類型的參數(shù)
* @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方式提交數(shù)據(jù)到服務(wù)器
* @param map 傳遞進(jìn)來的數(shù)據(jù),以map的形式進(jìn)行了封裝
* @param path 要求服務(wù)器servlet的地址
* @return 返回的boolean類型的參數(shù)
* @throws Exception
*/
public Boolean submintDataByHttpClientDoPost(Map<String, String> map, String path) throws Exception {
// 1. 獲得一個(gè)相當(dāng)于瀏覽器對象HttpClient,使用這個(gè)接口的實(shí)現(xiàn)類來創(chuàng)建對象,DefaultHttpClient
HttpClient hc = new DefaultHttpClient();
// DoPost方式請求的時(shí)候設(shè)置請求,關(guān)鍵是路徑
HttpPost request = new HttpPost(path);
// 2. 為請求設(shè)置請求參數(shù),也即是將要上傳到web服務(wù)器上的參數(shù)
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);
}
// 請求實(shí)體HttpEntity也是一個(gè)接口,我們用它的實(shí)現(xiàn)類UrlEncodedFormEntity來創(chuàng)建對象,注意后面一個(gè)String類型的參數(shù)是用來指定編碼的
HttpEntity entity = new UrlEncodedFormEntity(parameters, "UTF-8");
request.setEntity(entity);
// 3. 執(zhí)行請求
HttpResponse response = hc.execute(request);
// 4. 通過返回碼來判斷請求成功與否
if (response.getStatusLine().getStatusCode() == HttpURLConnection.HTTP_OK) {
return true;
}
return false;
}
}
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- CentOS服務(wù)器apache綁定多個(gè)域名的方法
- 騰訊云(ubuntu)下安裝 nodejs + 實(shí)現(xiàn) Nginx 反向代理服務(wù)器
- 在同一臺(tái)服務(wù)器上配置多個(gè)Tomcat的方法
- CentOS 7.2部署郵件服務(wù)器(Postfix)
- SVN 安裝教程之服務(wù)器和客戶端
- mysql自動(dòng)定時(shí)備份數(shù)據(jù)庫的最佳方法(windows服務(wù)器)
- Python 搭建Web站點(diǎn)之Web服務(wù)器與Web框架
- Nginx 服務(wù)器安裝及配置文件詳解介紹
- 服務(wù)器數(shù)據(jù)庫編碼格式問題解決方案
相關(guān)文章
手把手教你實(shí)現(xiàn)Android編譯期注解
今天給大家介紹Android編譯期注解sdk的步驟以及注意事項(xiàng),并簡要分析了運(yùn)行時(shí)注解以及字節(jié)碼技術(shù)在生成代碼上與編譯期注解的不同與優(yōu)劣,感興趣的朋友一起看看吧2021-07-07
Android項(xiàng)目開發(fā)之UI設(shè)計(jì)器
這篇文章主要為大家詳細(xì)介紹了Android項(xiàng)目開發(fā)之UI設(shè)計(jì)器,具有一定的實(shí)用性和參考價(jià)值,感興趣的小伙伴們可以參考一下2016-06-06
Android 取得狀態(tài)欄、任務(wù)欄高度的小例子
Android 取得狀態(tài)欄、任務(wù)欄高度的小例子,需要的朋友可以參考一下2013-05-05
用Android Location獲取當(dāng)前地理位置的方法
本篇文章小編為大家介紹,用Android Location獲取當(dāng)前地理位置的方法。需要的朋友參考下2013-04-04
Android使用自定義view在指定時(shí)間內(nèi)勻速畫一條直線的實(shí)例代碼
這篇文章主要介紹了Android使用自定義view在指定時(shí)間內(nèi)勻速畫一條直線的實(shí)例代碼,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2018-05-05
Android 模仿QQ側(cè)滑刪除ListView功能示例
這篇文章主要介紹了Android 模仿QQ側(cè)滑刪除ListView功能示例,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友可以參考下2017-03-03

