android AsynTask處理返回資料和AsynTask使用get,post請求,androidasyntask
Android是一個單執行緒模式,Android介面(UI)的繪製都只能在主線程中進行,如果在主線程中進行耗時的操作,就會影響UI的繪製和事件的響應。所以在android規定,不可在主線中進行耗時操作,否則將發生程式無響應(ANR)問題。
解決辦法:開啟新的線程進行耗時操作
開啟新的線程可以new Thread() 或實現Runnable介面
什麼要使用AsyncTask呢?
如果是使用Thread的run()方法,run()結束之後沒有傳回值。所以必須要自己建立通訊機制
AsyncTask將所有的線程通訊都封裝成回呼函數,調用邏輯容易書寫。尤其是在非同步處理結束之後,有回呼函數進行收尾處理。咳咳,程式員都懶的麼
Android給我們提供的一個輕量級的用於處理非同步任務的類:AsyncTask 當然是那個簡單就用那個咯
最後還有一點就是:Android 4.0後禁止在UI線程中執行網路操作~不然會報:android.os.NetworkOnMainThreadException
什麼是AsyncTask(原諒寶寶偷的圖 嘿嘿 不過真的解釋的很清楚呢)
注意:
Task的執行個體必須在UI Thread中建立
execute方法不惜在UI thread中建立
task只能被執行一次 多次調用時會出現異常
通用AsyncTask 以及在主線程中使用網路請求回返的資料
通用AsyncTask是什麼意思呢 發送不同的請求返回不同類型的資料 難道要一個類型寫個AsyncTask 豈不是麻煩死咯
還有一種情況 我們通過非同步任務得到了一個對象 然後在一下行立刻使用這個對象 邏輯完全沒問題 但是運行之後會報null 指標異常。這是怎麼回事呢?
AsycnTask開始了一個新的線程,但是主線程並沒有停止還在繼續運行,馬上就使用這個對象,而你新開的線程可能正在訪問網路這個對象為空白
你無法確定AsycnTask什麼時候才能擷取到資料,網快嗖的一下就好了,網慢就要等好久。
看一個簡略的小例子
首先呢 我們使用非同步任務的時候要處理不同類型的資料 把這個Http設定泛型類 第三個參數傳回值類型 設定為泛型 不管你是什麼類型的資料 全部ok
我又寫了一個介面 作為Http的屬性 在onPostExecute方法調用其中的onResponse方法 在Test中實現介面
這個介面的作用 完全可以理解為一個監聽事件 checkbox的改變監聽 觸發條件是 是否選中 這個介面監聽是否有資料 完成網路訪問有資料的時候就調用
我們在主線程中完成介面的實現 已經在主線程中實現了 返回來的資料還不是任君宰割阿~~~~~
public class Http<T> extends AsyncTask<String,Void,T> { private OnResponseListener<T> listener; public void setListener(OnResponseListener<T> listener) { this.listener = listener; } @Override protected T doInBackground(String... params) { return null; } @Override protected void onPostExecute(T t) { super.onPostExecute(t); if (listener!=null){ listener.onResponse(t); } } //介面 類似一個監聽事件 public interface OnResponseListener<T>{ void onResponse(T t); }}//擷取資料的測試類別public class Test { //要擷取的user對象 private User user1=null; public void get(){ //建立網路訪問執行個體 Http<User> http=new Http<User>(); //重寫介面 http.setListener(new Http.OnResponseListener<User>() { @Override public void onResponse(User user) { user1=user; } }); http.execute("xxx.balabala.com"); }}
在發送請求的時候很容易就帶個參數,請求的方式呢 無非就是get,post 兩者的區別呢 大白話的說 get不安全 參數通過url直接傳過去 post安全 參數加密一下子
下面貼一下AsyncTask在get和post請求時核心代碼 doInBackground方法
GET
protected T doInBackground(String... params) { //網路連接對象 HttpURLConnection connection=null; //輸入資料流 擷取網路資料 InputStream is=null; //位元組數組輸出資料流 ByteArrayOutputStream bos=null; try { //擷取網路連接對象 connection=(HttpURLConnection) new URL(params[0]).openConnection(); //設定get請求 必須大寫 connection.setRequestMethod("GET"); //擷取網路請求碼 200 400 500之類 不懂百度 int code=connection.getResponseCode(); if(code==200){ //擷取流 is=connection.getInputStream(); //臨時位元組數組 byte [] b=new byte[1024]; int len=-1; bos=new ByteArrayOutputStream(); while ((len=is.read(b))!=-1){ //寫入資料 bos.write(b,0,len); } String json=bos.toString("utf-8"); T t=JSON.parseObject(json,type); return t; }else{ Log.e("error","網路訪問失敗==========="+code); } } catch (IOException e) { e.printStackTrace(); }finally { try { if (bos!=null){ bos.close(); } if (is!=null){ is.close(); } } catch (IOException e) { e.printStackTrace(); } if (connection!=null){ connection.disconnect(); } } return null; }
POST
post和get的區別 就是post多了一段處理參數的代碼
protected T doInBackground(String... params) { //分割url 分為地址和參數兩部分 String[] strArr=params[0].split("\\?"); HttpURLConnection connection=null; //輸出資料流 OutputStream os=null; //輸入資料流 InputStream is=null; ByteArrayOutputStream bos=null; try { connection=(HttpURLConnection) new URL(strArr[0]).openConnection(); connection.setRequestMethod("POST"); //設定允許輸入 輸出 預設值true 不寫也可以 connection.setDoOutput(true); connection.setDoInput(true); os=connection.getOutputStream(); //把參數寫入 os.write(strArr[1].getBytes("utf-8")); os.close(); int code=connection.getResponseCode(); if(code==200){ is=connection.getInputStream(); byte [] b=new byte[1024]; int len=-1; bos=new ByteArrayOutputStream(); while ((len=is.read(b))!=-1){ bos.write(b,0,len); } String json=bos.toString("utf-8"); T t=JSON.parseObject(json,type); return t; }else{ Log.e("error","網路訪問失敗==========="+code); } } catch (IOException e) { e.printStackTrace(); }finally { try { if (bos!=null){ bos.close(); } if (is!=null){ is.close(); } } catch (IOException e) { e.printStackTrace(); } if (connection!=null){ connection.disconnect(); } } return null; }