實現android異步調用WEB API的方法

在一般應用中我們很多時候都會遇到利用網絡請求實現和客戶交互的操作,由於網絡的請求需要或長或短的時間等待,所以我們一般會把顯示界面和網絡請求取得數據的操作放在不同的線程上操作,把界面的操作放在主線程,而從網絡取得數據的操作就放在另外一個子線程中操作,網上說明這個實現方法的資料過於貧乏,所以我把實驗代碼貼出來

下面的類使用一個單獨的線程從主界面線程的HTTP調用Android的AsyncTask。事實上,在較新版本的Android上你是無法在主線程上調用的,你會得到一個異常 android.os.networkonmainthreadexception

public class ApiCall extends AsyncTask {
    private String result;
    protected Long doInBackground(URL... urls) {
int count = urls.length;
    long totalSize = 0;
    StringBuilder resultBuilder = new StringBuilder();
        for (int i = 0; i < count; i++) {
        try {
            // Read all the text returned by the server
                InputStreamReader reader = new InputStreamReader(urls

[i].openStream());
                BufferedReader in = new BufferedReader(reader);
                String resultPiece;
                while ((resultPiece = in.readLine()) != null) {
                resultBuilder.append(resultPiece);
                }
                in.close();
             } catch (MalformedURLException e) {
             e.printStackTrace();
             } catch (IOException e) {
             e.printStackTrace();
             }
             // if cancel() is called, leave the loop early
             if (isCancelled()) {
             break;
             }
         }
         // save the result
         this.result = resultBuilder.toString();
         return totalSize;
     }
    protected void onProgressUpdate(Integer... progress) {
        // update progress here
    }
// called after doInBackground finishes
    protected void onPostExecute(Long result) { 
    Log.v("result, yay!", this.result);
    }
}
調用方法很簡單,如下:

URL url = null;
try {
    url = new URL("http://search.twitter.com/search.json?q=@justinjmcc");
} catch (MalformedURLException e) {
    e.printStackTrace();
}
new ApiCall().execute(url);







發佈了40 篇原創文章 · 獲贊 6 · 訪問量 12萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章