轉:Android網絡編程之http通信

轉自:http://www.cnblogs.com/xiaoxiaoboke/archive/2011/06/23/2088133.html

Android中提供的HttpURLConnection和HttpClient接口可以用來開發HTTP程序。
1. HttpURLConnection接口
    首先需要明確的是,Http通信中的POST和GET請求方式的不同。GET可以獲得靜態頁面,也可以把參數放在URL字符串後面,傳遞給服務器。而POST方法的參數是放在Http請求中。因此,在編程之前,應當首先明確使用的請求方法,然後再根據所使用的方式選擇相應的編程方式。
    HttpURLConnection是繼承於URLConnection類,二者都是抽象類。其對象主要通過URL的openConnection方法獲得。創建方法如下代碼所示:

 
 

  1. URL url = new URL("http://www.51cto.com/index.jsp?par=123456");  
  2. HttpURLConnection urlConn=(HttpURLConnection)url.openConnection(); 
   

    通過以下方法可以對請求的屬性進行一些設置,如下所示:

 
 

  1. //設置輸入和輸出流  
  2. urlConn.setDoOutput(true);  
  3. urlConn.setDoInput(true);  
  4. //設置請求方式爲POST  
  5. urlConn.setRequestMethod("POST");  
  6. //POST請求不能使用緩存  
  7. urlConn.setUseCaches(false);  
  8. //關閉連接  
  9. urlConn.disConnection();  
  10.  


HttpURLConnection默認使用GET方式,例如下面代碼所示:

 
 

  1. String httpUrl="http://192.168.1.110:8080/httpget.jsp?par=abcdefg'';
  2. URL url=new URL(httpUrl);
  3. //使用HttpURLConnection打開連接  
  4.                 HttpURLConnection urlConn = (HttpURLConnection) url.openConnection();  
  5.                 //得到讀取的內容(流)  
  6.                 InputStreamReader in = new InputStreamReader(urlConn.getInputStream());  
  7.                 // 爲輸出創建BufferedReader  
  8.                 BufferedReader buffer = new BufferedReader(in);  
  9.                 String inputLine = null;  
  10.                 //使用循環來讀取獲得的數據  
  11.                 while (((inputLine = buffer.readLine()) != null))  
  12.                 {  
  13.                     //我們在每一行後面加上一個"\n"來換行  
  14.                     resultData += inputLine + "\n";  
  15.                 }           
  16.                 //關閉InputStreamReader  
  17.                 in.close();  
  18.                 //關閉http連接  
  19.                 urlConn.disconnect(); 


    如果需要使用POST方式,則需要setRequestMethod設置。代碼如下:

 
 

  1. String httpUrl = "http://192.168.1.110:8080/httpget.jsp";  
  2.         //獲得的數據  
  3.         String resultData = "";  
  4.         URL url = null;  
  5.         try 
  6.         {  
  7.             //構造一個URL對象  
  8.             url = new URL(httpUrl);   
  9.         }  
  10.         catch (MalformedURLException e)  
  11.         {  
  12.             Log.e(DEBUG_TAG, "MalformedURLException");  
  13.         }  
  14.         if (url != null)  
  15.         {  
  16.             try 
  17.             {  
  18.                 // 使用HttpURLConnection打開連接  
  19.                 HttpURLConnection urlConn = (HttpURLConnection) url.openConnection();  
  20.                 //因爲這個是post請求,設立需要設置爲true  
  21.                 urlConn.setDoOutput(true);  
  22.                 urlConn.setDoInput(true);  
  23.                 // 設置以POST方式  
  24.                 urlConn.setRequestMethod("POST");  
  25.                 // Post 請求不能使用緩存  
  26.                 urlConn.setUseCaches(false);  
  27.                 urlConn.setInstanceFollowRedirects(true);  
  28.                 // 配置本次連接的Content-type,配置爲application/x-www-form-urlencoded的  
  29.                 urlConn.setRequestProperty("Content-Type","application/x-www-form-urlencoded");  
  30.                 // 連接,從postUrl.openConnection()至此的配置必須要在connect之前完成,  
  31.                 // 要注意的是connection.getOutputStream會隱含的進行connect。  
  32.                 urlConn.connect();  
  33.                 //DataOutputStream流  
  34.                 DataOutputStream out = new DataOutputStream(urlConn.getOutputStream());  
  35.                 //要上傳的參數  
  36.                 String content = "par=" + URLEncoder.encode("ABCDEFG""gb2312");  
  37.                 //將要上傳的內容寫入流中  
  38.                 out.writeBytes(content);   
  39.                 //刷新、關閉  
  40.                 out.flush();  
  41.                 out.close();  


2. HttpClient接口
    使用Apache提供的HttpClient接口同樣可以進行HTTP操作。
    對於GET和POST請求方法的操作有所不同。GET方法的操作代碼示例如下:

 
 

  1. // http地址  
  2.         String httpUrl = "http://192.168.1.110:8080/httpget.jsp?par=HttpClient_android_Get";  
  3.         //HttpGet連接對象  
  4.         HttpGet httpRequest = new HttpGet(httpUrl);  
  5.          //取得HttpClient對象  
  6.             HttpClient httpclient = new DefaultHttpClient();  
  7.             //請求HttpClient,取得HttpResponse  
  8.             HttpResponse httpResponse = httpclient.execute(httpRequest);  
  9.             //請求成功  
  10.             if (httpResponse.getStatusLine().getStatusCode() == HttpStatus.SC_OK)  
  11.             {  
  12.                 //取得返回的字符串  
  13.                 String strResult = EntityUtils.toString(httpResponse.getEntity());  
  14.                 mTextView.setText(strResult);  
  15.             }  
  16.             else 
  17.             {  
  18.                 mTextView.setText("請求錯誤!");  
  19.             }  
  20.         } 


    使用POST方法進行參數傳遞時,需要使用NameValuePair來保存要傳遞的參數。,另外,還需要設置所使用的字符集。代碼如下所示:

 

 
 

  1. // http地址  
  2.         String httpUrl = "http://192.168.1.110:8080/httpget.jsp";  
  3.         //HttpPost連接對象  
  4.         HttpPost httpRequest = new HttpPost(httpUrl);  
  5.         //使用NameValuePair來保存要傳遞的Post參數  
  6.         List<NameValuePair> params = new ArrayList<NameValuePair>();  
  7.         //添加要傳遞的參數  
  8.         params.add(new BasicNameValuePair("par""HttpClient_android_Post"));  
  9.         //設置字符集  
  10.             HttpEntity httpentity = new UrlEncodedFormEntity(params, "gb2312");  
  11.             //請求httpRequest  
  12.             httpRequest.setEntity(httpentity);  
  13.             //取得默認的HttpClient  
  14.             HttpClient httpclient = new DefaultHttpClient();  
  15.             //取得HttpResponse  
  16.             HttpResponse httpResponse = httpclient.execute(httpRequest);  
  17.             //HttpStatus.SC_OK表示連接成功  
  18.             if (httpResponse.getStatusLine().getStatusCode() == HttpStatus.SC_OK)  
  19.             {  
  20.                 //取得返回的字符串  
  21.                 String strResult = EntityUtils.toString(httpResponse.getEntity());  
  22.                 mTextView.setText(strResult);  
  23.             }  
  24.             else 
  25.             {  
  26.                 mTextView.setText("請求錯誤!");  
  27.             }  
  28.         } 

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

    另外,在使用POST方式進行傳輸時,需要進行字符編碼。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章