1. 程式人生 > >android學習——網路訪問HttpURLConnection

android學習——網路訪問HttpURLConnection

我們知道大多數的 Android 應用程式都是通過和伺服器進行互動來獲取資料的。如果使用 HTTP 協議來發送和接收網路資料,就免不了使用 HttpURLConnection 和 HttpClient,而 Android 中主要提供了上述兩種方式來進行 HTTP 操作。並且這兩種方式都支援 HTTPS 協議、以流的形式進行上傳和下載、配置超時時間、IPv6、以及連線池等功能。

但是 Googl e釋出 6.0 版本的時候宣告原生剔除 HttpClient,詳情可以看http://blog.csdn.net/guolin_blog/article/details/12452307。

接著我們來看一下如何使用 HttpURLConnection 的GET和POST來處理簡單的使用者登入請求。



<span style="white-space:pre">	</span>// 點選按鈕 進行get方式提交資料
<span style="white-space:pre">	</span>public void click1(View v) {
<span style="white-space:pre">		</span>
<span style="white-space:pre">		</span>new Thread(){public void run() {
<span style="white-space:pre">			</span>


<span style="white-space:pre">			</span>try {
<span style="white-space:pre">			</span>//獲取使用者名稱和密碼 
<span style="white-space:pre">			</span>String name = et_username.getText().toString().trim();
<span style="white-space:pre">			</span>String pwd = et_password.getText().toString().trim();
<span style="white-space:pre">			</span>//定義get方式要提交的路徑    小細節 如果提交中文要對name 和 pwd 進行一個urlencode 編碼 
<span style="white-space:pre">			</span>String path = "http://192.168.11.73:8080/login/LoginServlet?username="+URLEncoder.encode(name, "utf-8")+"&password="+URLEncoder.encode(pwd, "utf-8")+"";
<span style="white-space:pre">		</span>
<span style="white-space:pre">				</span>//(1) 建立一個url物件 引數就是網址 
<span style="white-space:pre">				</span>URL url = new URL(path);
<span style="white-space:pre">				</span>//(2)獲取HttpURLConnection 連結物件
<span style="white-space:pre">				</span>HttpURLConnection conn = (HttpURLConnection) url.openConnection();
<span style="white-space:pre">				</span>//(3)設定引數  傳送get請求
<span style="white-space:pre">				</span>conn.setRequestMethod("GET"); //預設請求 就是get  要大寫
<span style="white-space:pre">				</span>//(4)設定連結網路的超時時間 
<span style="white-space:pre">				</span>conn.setConnectTimeout(5000);
<span style="white-space:pre">				</span>//(5)獲取伺服器返回的狀態碼 
<span style="white-space:pre">				</span>int code = conn.getResponseCode(); //200  代表獲取伺服器資源全部成功  206請求部分資源    
<span style="white-space:pre">				</span>if (code == 200) {
<span style="white-space:pre">					</span>//(6)獲取伺服器返回的資料  以流的形式返回   
<span style="white-space:pre">					</span>InputStream inputStream = conn.getInputStream();


<span style="white-space:pre">					</span>
<span style="white-space:pre">					</span>//(6.1)把inputstream 轉換成 string 
<span style="white-space:pre">					</span>String content = readStream(inputStream);
<span style="white-space:pre">					</span>
<span style="white-space:pre">					</span>
<span style="white-space:pre">					</span>//(7)把伺服器返回的資料展示到Toast上  不能在子執行緒展示toast
<span style="white-space:pre">					</span>showToast(content);
<span style="white-space:pre">					</span>
<span style="white-space:pre">					</span>
<span style="white-space:pre">				</span>}


<span style="white-space:pre">			</span>} catch (Exception e) {
<span style="white-space:pre">				</span>e.printStackTrace();
<span style="white-space:pre">			</span>}
<span style="white-space:pre">		</span>};}.start();
<span style="white-space:pre">		</span>
<span style="white-space:pre">		</span>
<span style="white-space:pre">		</span>
<span style="white-space:pre">	</span>}


<span style="white-space:pre">	</span>// [1]點選按鈕 進行post方式提交資料
<span style="white-space:pre">	</span>public void click2(View v) {


<span style="white-space:pre">		</span>
<span style="white-space:pre">	</span>new Thread(){public void run() {
<span style="white-space:pre">			</span>try {
<span style="white-space:pre">			</span>//[2]獲取使用者名稱和密碼 
<span style="white-space:pre">			</span>String name = et_username.getText().toString().trim();
<span style="white-space:pre">			</span>String pwd = et_password.getText().toString().trim();
<span style="white-space:pre">			</span>//[2.1]定義get方式要提交的路徑 
<span style="white-space:pre">			</span>
<span style="white-space:pre">			</span>String data = "username="+URLEncoder.encode(name, "utf-8")+"&password="+URLEncoder.encode(pwd,"utf-8")+""; //請求體的內容
<span style="white-space:pre">			</span>
<span style="white-space:pre">			</span>// 一 ☆☆☆☆☆☆☆和get方式提交資料 區別 路徑不同
<span style="white-space:pre">			</span>
<span style="white-space:pre">			</span>String path = "http://192.168.11.73:8080/login/LoginServlet";
<span style="white-space:pre">		</span>
<span style="white-space:pre">				</span>//(1) 建立一個url物件 引數就是網址 
<span style="white-space:pre">				</span>URL url = new URL(path);
<span style="white-space:pre">				</span>//(2)獲取HttpURLConnection 連結物件
<span style="white-space:pre">				</span>HttpURLConnection conn = (HttpURLConnection) url.openConnection();
<span style="white-space:pre">				</span>//(3)設定引數  傳送get請求
<span style="white-space:pre">				</span>
<span style="white-space:pre">		</span>    //二 ☆☆☆☆☆☆☆和get方式提交資料 區別  設定請求方式是post
<span style="white-space:pre">				</span>conn.setRequestMethod("POST"); //預設請求 就是get  要大寫
<span style="white-space:pre">				</span>//(4)設定連結網路的超時時間 
<span style="white-space:pre">				</span>conn.setConnectTimeout(5000);
<span style="white-space:pre">				</span>
<span style="white-space:pre">				</span>
<span style="white-space:pre">			</span>//三 <span style="white-space:pre">	</span> ☆☆☆☆☆☆☆和get方式提交資料 區別 要多設定2個請求頭資訊 
<span style="white-space:pre">				</span>//設定頭資訊
<span style="white-space:pre">				</span>conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
<span style="white-space:pre">				</span>conn.setRequestProperty("Content-Length", data.length()+"");
<span style="white-space:pre">				</span>
<span style="white-space:pre">			</span>
<span style="white-space:pre">				</span>conn.setDoOutput(true);// 設定一個標記 允許輸出 
<span style="white-space:pre">				</span>//四 ☆☆☆☆☆☆☆ 獲得一個輸出流,向伺服器寫資料,預設情況下,系統不允許向伺服器輸出內容 
<span style="white-space:pre">				</span>OutputStream out = conn.getOutputStream();
<span style="white-space:pre">				</span>out.write(data.getBytes());
<span style="white-space:pre">				</span>out.flush();  
<span style="white-space:pre">				</span>out.close(); 
<span style="white-space:pre">				
</span>
<span style="white-space:pre">				</span>
<span style="white-space:pre">				</span>//(5)獲取伺服器返回的狀態碼 
<span style="white-space:pre">				</span>int code = conn.getResponseCode(); //200  代表獲取伺服器資源全部成功  206請求部分資源    
<span style="white-space:pre">				</span>if (code == 200) {
<span style="white-space:pre">					</span>//(6)獲取伺服器返回的資料  以流的形式返回   
<span style="white-space:pre">					</span>InputStream inputStream = conn.getInputStream();
<span style="white-space:pre">					</span>
<span style="white-space:pre">					</span>//(6.1)把inputstream 轉換成 string 
<span style="white-space:pre">					</span>String content = readStream(inputStream);
<span style="white-space:pre">					</span>
<span style="white-space:pre">					</span>
<span style="white-space:pre">					</span>//(7)把伺服器返回的資料展示到Toast上  不能在子執行緒展示toast
<span style="white-space:pre">					</span>showToast(content);
<span style="white-space:pre">					</span>
<span style="white-space:pre">					</span>
<span style="white-space:pre">				</span>}


<span style="white-space:pre">			</span>} catch (Exception e) {
<span style="white-space:pre">				</span>e.printStackTrace();
<span style="white-space:pre">			</span>}
<span style="white-space:pre">		</span>};}.start();
<span style="white-space:pre">		</span>
<span style="white-space:pre">		</span>
<span style="white-space:pre">	</span>}
<span style="white-space:pre">	</span>
<span style="white-space:pre">	</span><pre name="code" class="java" style="color: rgb(51, 51, 51); font-size: 14px; line-height: 22.4px;">//封裝把一個inputStream 轉換成一個String的方法
 private static String readStream(InputStream is)
             throws IOException {
         ByteArrayOutputStream os = new ByteArrayOutputStream();
         // 模板程式碼 必須熟練
         byte[] buffer = new byte[1024];
         int len = -1;
         while ((len = is.read(buffer)) != -1) {
             os.write(buffer, 0, len);
         }
         is.close();
         String state = os.toString();// 把流中的資料轉換成字串,採用的編碼是utf-8(模擬器預設編碼)
         os.close();
         return state;
     }
//封裝toast方法  該toast方法執行在主執行緒 
public void showToast(final String content){
runOnUiThread(new Runnable() {

@Override
public void run() {
//該方法一定是執行主執行緒 
Toast.makeText(getApplicationContext(), content, 1).show();


}
});

}