【Android】Http請求

比較簡單直接貼代碼了。

  1. package jftt.test;
  2. import java.io.IOException;
  3. import java.util.List;
  4. import org.apache.http.HttpResponse;
  5. import org.apache.http.HttpStatus;
  6. import org.apache.http.NameValuePair;
  7. import org.apache.http.client.ClientProtocolException;
  8. import org.apache.http.client.HttpClient;
  9. import org.apache.http.client.entity.UrlEncodedFormEntity;
  10. import org.apache.http.client.methods.HttpGet;
  11. import org.apache.http.client.methods.HttpPost;
  12. import org.apache.http.impl.client.DefaultHttpClient;
  13. import org.apache.http.params.BasicHttpParams;
  14. import org.apache.http.params.HttpConnectionParams;
  15. import org.apache.http.params.HttpParams;
  16. import android.util.Log;
  17. public class HttpRequest {
  18. /**
  19. *Post請求
  20. */
  21. public void doPost(String url , List<NameValuePair> nameValuePairs){
  22. //新建HttpClient對象
  23. HttpClient httpclient = new DefaultHttpClient();
  24. //創建POST連接
  25. HttpPost httppost = new HttpPost(url);
  26. try {
  27. // //使用PSOT方式,必須用NameValuePair數組傳遞參數
  28. // List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
  29. // nameValuePairs.add(new BasicNameValuePair("id", "12345"));
  30. // nameValuePairs.add(new BasicNameValuePair("stringdata","hps is Cool!"));
  31. httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
  32. HttpResponse response = httpclient.execute(httppost);
  33. } catch (ClientProtocolException e) {
  34. e.printStackTrace();
  35. } catch (IOException e) {
  36. e.printStackTrace();
  37. }
  38. }
  39. /**
  40. *Get請求
  41. */
  42. public void doGet(String url){
  43. HttpParams httpParams = new BasicHttpParams();
  44. HttpConnectionParams.setConnectionTimeout(httpParams,30000);
  45. HttpConnectionParams.setSoTimeout(httpParams, 30000);
  46. HttpClient httpClient = new DefaultHttpClient(httpParams);
  47. // GET
  48. HttpGet httpGet = new HttpGet(url);
  49. try {
  50. HttpResponse response = httpClient.execute(httpGet);
  51. if (response.getStatusLine().getStatusCode() != HttpStatus.SC_OK){
  52. Log.i("GET", "Bad Request!");
  53. }
  54. } catch (IOException e) {
  55. e.printStackTrace();
  56. }
  57. }
  58. }

需要主要的是:

1. 使用POST方式時,傳遞參數必須使用NameValuePair數組

2. 使用GET方式時,通過URL傳遞參數,注意寫法

3. 通過setEntity方法來發送HTTP請求

4. 通過DefaultHttpClient 的 execute方法來獲取HttpResponse

5. 通過getEntity()從Response中獲取內容

  1. String content = EntityUtils.toString(response.getEntity());



特別說明:

對於WCF的json服務,請求時如下:

  1. /**
  2. *Post請求
  3. * @throws IOException
  4. * @throws ClientProtocolException
  5. */
  6. public static String doPost(String url , List<NameValuePair> nameValuePairs) throws ClientProtocolException, IOException{
  7. String result = null;
  8. //新建HttpClient對象
  9. HttpClient httpclient = new DefaultHttpClient();
  10. //創建POST連接
  11. HttpPost httppost = new HttpPost(url);
  12. httppost.setHeader("content-type", "application/json");
  13. try {
  14. if(nameValuePairs != null) {
  15. StringEntity entity = new StringEntity("這裏是JSON數據,如{"id":"12","name":"xiaoming"}", "utf-8");
  16. entity.setContentType("application/json");
  17. entity.setContentEncoding("utf-8");
  18. httppost.setEntity(entity);
  19. }
  20. // if(nameValuePairs != null) {
  21. // httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs, HTTP.UTF_8));
  22. // }
  23. HttpResponse response = httpclient.execute(httppost);
  24. if (response.getStatusLine().getStatusCode() != 404)
  25. {
  26. result = EntityUtils.toString(response.getEntity());
  27. Logger.d(TAG, "Response: " + result);
  28. }
  29. } finally {
  30. }
  31. return result;
  32. }
    /**      *Post請求      * @throws IOException      * @throws ClientProtocolException      */      public static String doPost(String url , List<NameValuePair> nameValuePairs) throws ClientProtocolException, IOException{     	String result = null;        //新建HttpClient對象            HttpClient httpclient = new DefaultHttpClient();          //創建POST連接          HttpPost httppost = new HttpPost(url);          httppost.setHeader("content-type", "application/json");        try {        	if(nameValuePairs != null) {				StringEntity entity = new StringEntity("這裏是JSON數據,如{"id":"12","name":"xiaoming"}", "utf-8");				entity.setContentType("application/json");				entity.setContentEncoding("utf-8");				httppost.setEntity(entity);        	}        	  //        	if(nameValuePairs != null) {//        		httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs, HTTP.UTF_8));  //        	}            HttpResponse response = httpclient.execute(httppost);              if (response.getStatusLine().getStatusCode() != 404)            {                    result = EntityUtils.toString(response.getEntity());                    Logger.d(TAG, "Response: " + result);            }        } finally {        	        }        return result;    }

其實就相當於傳數據流的方式。


發佈了94 篇原創文章 · 獲贊 310 · 訪問量 171萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章