HttpURLConnection接口

1. HttpURLConnection接口
    首先須要明確的是,Http通訊中的POST和GET請求方式的不一樣。GET能夠得到靜態頁面,也能夠把參數放在URL字符串後面,傳遞給服務器。而POST方法的參數是放在Http請求中。所以,在編程以前,應當首先明確使用的請求方法,而後再根據所使用的方式選擇相應的編程方式。
    HttpURLConnection是繼承於URLConnection類,兩者都是抽象類。其對象主要經過URL的openConnection方法得到。建立方法以下代碼所示: html

 
 

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

    經過如下方法能夠對請求的屬性進行一些設置,以下所示: android

 
 

     
  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. //使用HttpURLConnection打開鏈接  
  2.                 HttpURLConnection urlConn = (HttpURLConnection) url.openConnection();  
  3.                 //獲得讀取的內容(流)  
  4.                 InputStreamReader in = new InputStreamReader(urlConn.getInputStream());  
  5.                 // 爲輸出建立BufferedReader  
  6.                 BufferedReader buffer = new BufferedReader(in);  
  7.                 String inputLine = null;  
  8.                 //使用循環來讀取得到的數據  
  9.                 while (((inputLine = buffer.readLine()) != null))  
  10.                 {  
  11.                     //咱們在每一行後面加上一個"\n"來換行  
  12.                     resultData += inputLine + "\n";  
  13.                 }           
  14.                 //關閉InputStreamReader  
  15.                 in.close();  
  16.                 //關閉http鏈接  
  17.                 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方式進行傳輸時,須要進行字符編碼。 緩存

經過HttpURLConnection模擬post表單提交 服務器

http://www.cnblogs.com/linjiqin/archive/2012/02/16/2353597.html app

相關文章
相關標籤/搜索