Android網(wǎng)絡(luò)編程之Http通信
//請(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)行字符編碼。
評(píng)論