新聞中心

EEPW首頁 > 嵌入式系統(tǒng) > 設(shè)計(jì)應(yīng)用 > Android網(wǎng)絡(luò)編程之Http通信

Android網(wǎng)絡(luò)編程之Http通信

作者: 時(shí)間:2016-09-12 來源:網(wǎng)絡(luò) 收藏

//請(qǐng)求httpRequest

httpRequest.setEntity(httpentity);

//取得默認(rèn)的HttpClient

HttpClient httpclient = new DefaultHttpClient();

//取得HttpResponse

HttpResponse httpResponse = httpclient.execute(httpRequest);

//HttpStatus.SC_OK表示連接成功

if (httpResponse.getStatusLine().getStatusCode() == HttpStatus.SC_OK)

{

//取得返回的字符串

String strResult = EntityUtils.toString(httpResponse.getEntity());

mTextView.setText(strResult);

}

else

{

mTextView.setText(請(qǐng)求錯(cuò)誤!);

}

}

HttpClient實(shí)際上是對(duì)Java提供方法的一些封裝,在HttpURLConnection中的輸入輸出流操作,在這個(gè)接口中被統(tǒng)一封裝成了HttpPost(HttpGet)和HttpResponse,這樣,就減少了操作的繁瑣性。

另外,在使用POST方式進(jìn)行傳輸時(shí),需要進(jìn)行字符編碼。


上一頁 1 2 下一頁

關(guān)鍵詞:

評(píng)論


相關(guān)推薦

技術(shù)專區(qū)

關(guān)閉