Android開發實現HttpClient工具類

來源:互聯網
上載者:User

在Android開發中我們經常會用到網路連接功能與伺服器進行資料的互動,為此Android的SDK提供了Apache的HttpClient來方便我們使用各種Http服務。你可以把HttpClient想象成一個瀏覽器,通過它的API我們可以很方便的發出GET,POST請求(當然它的功能遠不止這些)。
  比如你只需以下幾行代碼就能發出一個簡單的GET請求並列印響應結果:

  try {
          // 建立一個預設的HttpClient
          HttpClient httpclient = new DefaultHttpClient();
          // 建立一個GET請求
          HttpGet request = new HttpGet("www.google.com");
          // 發送GET請求,並將響應內容轉換成字串
          String response = httpclient.execute(request, new BasicResponseHandler());
          Log.v("response text", response);
      } catch (ClientProtocolException e) {
          e.printStackTrace();
      } catch (IOException e) {
          e.printStackTrace();
      }

  為什麼要使用單例HttpClient?
  這隻是一段示範代碼,實際的項目中的請求與響應處理會複雜一些,並且還要考慮到代碼的容錯性,但是這並不是本篇的重點。注意代碼的第三行:

  HttpClient httpclient = new DefaultHttpClient();

  在發出HTTP請求前,我們先建立了一個HttpClient對象。那麼,在實際項目中,我們很可能在多處需要進行HTTP通訊,這時候我們不需要為每個請求都建立一個新的HttpClient。因為之前已經提到,HttpClient就像一個小型的瀏覽器,對於整個應用,我們只需要一個HttpClient就夠了。看到這裡,一定有人心裡想,這有什麼難的,用單例啊!!就像這樣:

  public class CustomerHttpClient {
      private static HttpClient customerHttpClient;
    
      private CustomerHttpClient() {
      }
    
      public static HttpClient getHttpClient() {
          if(null == customerHttpClient) {
              customerHttpClient = new DefaultHttpClient();
          }
          return customerHttpClient;
      }
  }

  多線程!試想,現在我們的應用程式使用同一個HttpClient來管理所有的Http請求,一旦出現並發請求,那麼一定會出現多線程的問題。這就好像我們的瀏覽器只有一個標籤頁卻有多個使用者,A要上google,B要上baidu,這時瀏覽器就會忙不過來了。幸運的是,HttpClient提供了建立安全執行緒對象的API,協助我們能很快地得到安全執行緒的“瀏覽器”。

  解決多線程問題

  public class CustomerHttpClient {
      private static final String CHARSET = HTTP.UTF_8;
      private static HttpClient customerHttpClient;

      private CustomerHttpClient() {
      }

      public static synchronized HttpClient getHttpClient() {
          if (null == customerHttpClient) {
              HttpParams params = new BasicHttpParams();
              // 設定一些基本參數
              HttpProtocolParams.setVersion(params, HttpVersion.HTTP_1_1);
              HttpProtocolParams.setContentCharset(params,
                      CHARSET);
              HttpProtocolParams.setUseExpectContinue(params, true);
              HttpProtocolParams
                      .setUserAgent(
                              params,
                              "Mozilla/5.0(Linux;U;Android 2.2.1;en-us;Nexus One Build.FRG83) "
                                      + "AppleWebKit/553.1(KHTML,like Gecko) Version/4.0 Mobile Safari/533.1");
              // 逾時設定
              /* 從串連池中取串連的逾時時間 */
              ConnManagerParams.setTimeout(params, 1000);
              /* 連線逾時 */
              HttpConnectionParams.setConnectionTimeout(params, 2000);
              /* 請求逾時 */
              HttpConnectionParams.setSoTimeout(params, 4000);
            
              // 設定我們的HttpClient支援HTTP和HTTPS兩種模式
              SchemeRegistry schReg = new SchemeRegistry();
              schReg.register(new Scheme("http", PlainSocketFactory
                      .getSocketFactory(), 80));
              schReg.register(new Scheme("https", SSLSocketFactory
                      .getSocketFactory(), 443));

              // 使用安全執行緒的串連管理來建立HttpClient
              ClientConnectionManager conMgr = new ThreadSafeClientConnManager(
                      params, schReg);
              customerHttpClient = new DefaultHttpClient(conMgr, params);
          }
          return customerHttpClient;
      }
  }

  在上面的getHttpClient()方法中,我們為HttpClient配置了一些基本參數和逾時設定,然後使用ThreadSafeClientConnManager來建立安全執行緒的HttpClient。上面的代碼提到了3種逾時設定,比較容易搞混,故在此特作辨析。

HttpClient的3種逾時說明

  /* 從串連池中取串連的逾時時間 */
  ConnManagerParams.setTimeout(params, 1000);
  /* 連線逾時 */
  HttpConnectionParams.setConnectionTimeout(params, 2000);
  /* 請求逾時 */
  HttpConnectionParams.setSoTimeout(params, 4000);

  第一行設定ConnectionPoolTimeout:這定義了從ConnectionManager管理的串連池中取出串連的逾時時間,此處設定為1秒。
  第二行設定ConnectionTimeout:這定義了通過網路與伺服器建立串連的逾時時間。Httpclient包中通過一個非同步線程去建立與伺服器的socket串連,這就是該socket串連的逾時時間,此處設定為2秒。
  第三行設定SocketTimeout:這定義了Socket讀資料的逾時時間,即從伺服器擷取響應資料需要等待的時間,此處設定為4秒。
  以上3種逾時分別會拋出ConnectionPoolTimeoutException,ConnectionTimeoutException與SocketTimeoutException。

  封裝簡單的POST請求
  有了單例的HttpClient對象,我們就可以把一些常用的發出GET和POST請求的代碼也封裝起來,寫進我們的工具類中了。目前我僅僅實現發出POST請求並返迴響應字串的方法以供大家參考。將以下代碼加入我們的CustomerHttpClient類中:

  private static final String TAG = "CustomerHttpClient";

  public static String post(String url, NameValuePair... params) {
          try {
              // 編碼參數
              List<NameValuePair> formparams = new ArrayList<NameValuePair>(); // 請求參數
              for (NameValuePair p : params) {
                  formparams.add(p);
              }
              UrlEncodedFormEntity entity = new UrlEncodedFormEntity(formparams,
                      CHARSET);
              // 建立POST請求
              HttpPost request = new HttpPost(url);
              request.setEntity(entity);
              // 發送請求
              HttpClient client = getHttpClient();
              HttpResponse response = client.execute(request);
              if(response.getStatusLine().getStatusCode() != HttpStatus.SC_OK) {
                  throw new RuntimeException("請求失敗");
              }
              HttpEntity resEntity =  response.getEntity();
              return (resEntity == null) ? null : EntityUtils.toString(resEntity, CHARSET);
          } catch (UnsupportedEncodingException e) {
              Log.w(TAG, e.getMessage());
              return null;
          } catch (ClientProtocolException e) {
              Log.w(TAG, e.getMessage());
              return null;
          } catch (IOException e) {
              throw new RuntimeException("串連失敗", e);
          }

      }

  使用我們的CustomerHttpClient工具類
  現在,在整個項目中我們都能很方便的使用該工具類來進行網路通訊的業務代碼編寫了。下面的代碼示範了如何使用username和password註冊一個賬戶並得到新賬戶ID。

  final String url = "http://yourdomain/context/adduser";
      //準備資料
      NameValuePair param1 = new BasicNameValuePair("username", "張三");
      NameValuePair param2 = new BasicNameValuePair("password", "123456");
      int resultId = -1;
      try {
          // 使用工具類直接發出POST請求,伺服器返回json資料,比如"{userid:12}"
          String response = CustomerHttpClient.post(url, param1, param2);
          JSONObject root = new JSONObject(response);
          resultId = Integer.parseInt(root.getString("userid"));
          Log.i(TAG, "新使用者ID:" + resultId);
      } catch (RuntimeException e) {
          // 請求失敗或者串連失敗
          Log.w(TAG, e.getMessage());
          Toast.makeText(this, e.getMessage(), Toast.LENGTH_SHORT);
      } catch (Exception e) {
          // JSon解析出錯
          Log.w(TAG, e.getMessage());
      }

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.