溫馨提示×

溫馨提示×

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

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

安卓怎樣訪問云服務(wù)器地址

發(fā)布時間:2020-10-21 15:44:17 來源:億速云 閱讀:101 作者:Leah 欄目:建站服務(wù)器

安卓怎樣訪問云服務(wù)器地址?相信很多沒有經(jīng)驗(yàn)的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

使用安卓程序連接到云服務(wù)器,用httpClient或者okhttp 原理都是一樣,發(fā)起http請求傳遞數(shù)據(jù),解析結(jié)果。這里我們根據(jù)百度知道網(wǎng)友的介紹,舉例一下 httpClient 的用法:

1. GET 方式傳遞參數(shù)

//先將參數(shù)放入List,再對參數(shù)進(jìn)行URL編碼

List<BasicNameValuePair> params = new LinkedList<BasicNameValuePair>();

params.add(new BasicNameValuePair("param1", "數(shù)據(jù)")); // 增加參數(shù)1

params.add(new BasicNameValuePair("param2", "value2"));// 增加參數(shù)2

String param = URLEncodedUtils.format(params, "UTF-8");// 對參數(shù)編碼

String baseUrl = "服務(wù)器接口完整URL";

HttpGet getMethod = new HttpGet(baseUrl + "?" + param);// 將URL與參數(shù)拼接

HttpClient httpClient = new DefaultHttpClient();

try {HttpResponse response = httpClient.execute(getMethod); // 發(fā)起GET請求

Log.i(TAG, "resCode = " + response.getStatusLine().getStatusCode()); // 獲取響應(yīng)碼

Log.i(TAG, "result = " + EntityUtils.toString(response.getEntity(), "utf-8"));// 獲取服務(wù)器響應(yīng)內(nèi)容

} catch (ClientProtocolException e) {e.printStackTrace();} catch (IOException e)

{e.printStackTrace();}

2. POST方式 方式傳遞參數(shù)

//和GET方式一樣,先將參數(shù)放入List

params = new LinkedList<BasicNameValuePair>();

params.add(new BasicNameValuePair("param1", "Post方法"));// 增加參數(shù)1

params.add(new BasicNameValuePair("param2", "第二個參數(shù)"));// 增加參數(shù)2

try {HttpPost postMethod = new HttpPost(baseUrl);// 創(chuàng)建一個post請求

postMethod.setEntity(new UrlEncodedFormEntity(params, "utf-8")); // 將參數(shù)填入POST Entity中

HttpResponse response = httpClient.execute(postMethod); //執(zhí)行POST方法

Log.i(TAG, "resCode = " + response.getStatusLine().getStatusCode()); // 獲取響應(yīng)碼

Log.i(TAG, "result = " + EntityUtils.toString(response.getEntity(), "utf-8")); // 獲取響應(yīng)內(nèi)容

} catch (UnsupportedEncodingException e) {e.printStackTrace();

} catch (ClientProtocolException e) {e.printStackTrace();}

catch (IOException e) {e.printStackTrace();}

看完上述內(nèi)容,你們掌握安卓怎樣訪問云服務(wù)器地址的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI