標籤:
10.2.1
使用
HttpURLConnection
1,首先需要擷取到 HttpURLConnection 的執行個體,一般只需 new 出一個 URL 對象,並傳入
目標的網路地址,然後調用一下 openConnection()方法。
2,我們可以設定一下 HTTP 要求所使用的方法。
常用的方法主要有兩個, GET 和 POST。 GET 表示希望從伺服器那裡擷取資料,而 POST 則
表示希望提交資料給伺服器。
3,接下來就可以進行一些自由的定製了,比如設定連線逾時、讀取逾時的毫秒數,以及服
務器希望得到的一些訊息頭等。
4,之後再調用 getInputStream()方法就可以擷取到伺服器返回的輸入資料流了,剩下的任務就是
對輸入資料流進行讀取,
5.
最後可以調用 disconnect()方法將這個 HTTP 串連關閉掉,
// 開啟線程來發起網路請求 new Thread(new Runnable() { @Override public void run() { HttpURLConnection connection = null; try { URL url = new URL("http://www.baidu.com"); connection = (HttpURLConnection) url.openConnection(); 第一行代碼——Android 400 connection.setRequestMethod("GET"); connection.setConnectTimeout(8000); connection.setReadTimeout(8000); InputStream in = connection.getInputStream(); // 下面對擷取到的輸入資料流進行讀取 BufferedReader reader = new BufferedReader(new InputStreamReader(in)); StringBuilder response = new StringBuilder(); String line; while ((line = reader.readLine()) != null) { response.append(line); } Message message = new Message(); message.what = SHOW_RESPONSE; // 將伺服器返回的結果存放到Message中 message.obj = response.toString(); handler.sendMessage(message); } catch (Exception e) { e.printStackTrace(); } finally { if (connection != null) { connection.disconnect(); } } } }).start(); }
那麼如果是想要提交資料給伺服器應該怎麼辦呢?其實也不複雜,只需要將 HTTP 要求
的方法改成 POST,並在擷取輸入資料流之前把要提交的資料寫出即可。注意每條資料都要以鍵
值對的形式存在,資料與資料之間用&符號隔開,比如說我們想要向伺服器提交使用者名稱和密
碼,就可以這樣寫:
connection.setRequestMethod("POST");DataOutputStream out = new DataOutputStream(connection.getOutputStream());out.writeBytes("username=admin&password=123456");
10.2.2 使用 HttpClient
1,HttpClient 是一個介面,因此無法建立它的執行個體,通常情況下都會創
建一個 DefaultHttpClient 的執行個體,如下所示:
HttpClient httpClient = new DefaultHttpClient();
2,接下來如果想要發起一條 GET 請求,就可以建立一個 HttpGet 對象,並傳入目標的網路
地址,然後調用 HttpClient 的 execute()方法即可
HttpGet httpGet = new HttpGet("http://www.baidu.com");
httpClient.execute(httpGet);
如果是發起一條 POST 請求會比 GET 稍微複雜一點,我們需要建立一個 HttpPost 對象,
並傳入目標的網路地址,如下所示:
HttpPost httpPost = new HttpPost("http://www.baidu.com");
然後通過一個 NameValuePair 集合來存放待提交的參數,並將這個參數集合傳入到一個
UrlEncodedFormEntity 中,然後調用 HttpPost 的 setEntity()方法將構建好的 UrlEncodedFormEntity
傳入,如下所示:
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("username", "admin"));
params.add(new BasicNameValuePair("password", "123456"));
UrlEncodedFormEntity entity = new UrlEncodedFormEntity(params, "utf-8");
httpPost.setEntity(entity);
3,接下來的操作就和 HttpGet 一樣了,調用 HttpClient 的 execute()方法,並將 HttpPost 對
象傳入即可:
httpClient.execute(httpPost);
if (httpResponse.getStatusLine().getStatusCode() == 200) {
// 請求和響應都成功了
}
4,
接下來在這個 if判斷的內部取出服務返回的具體內容,可以調用 getEntity()方法擷取到
一個 HttpEntity 執行個體,然後再用 EntityUtils.toString()這個靜態方法將 HttpEntity 轉換成字串
即可,如下所示:
HttpEntity entity = httpResponse.getEntity();
String response = EntityUtils.toString(entity);
public class MainActivity extends Activity implements OnClickListener {……@Overridepublic void onClick(View v) {if (v.getId() == R.id.send_request) {sendRequestWithHttpClient();}}private void sendRequestWithHttpClient() {new Thread(new Runnable() {@Overridepublic void run() {try {HttpClient httpClient = new DefaultHttpClient();HttpGet httpGet = new HttpGet("http://www.baidu.com");HttpResponse httpResponse = httpClient.execute(httpGet);if (httpResponse.getStatusLine().getStatusCode() == 200) {// 請求和響應都成功了HttpEntity entity = httpResponse.getEntity();第一行代碼——Android404String response = EntityUtils.toString(entity,"utf-8");Message message = new Message();message.what = SHOW_RESPONSE;// 將伺服器返回的結果存放到Message中message.obj = response.toString();handler.sendMessage(message);}} catch (Exception e) {e.printStackTrace();}}}).start();}……}
安卓使用 HTTP 協議訪問網路