Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android網絡請求庫——android-async-http使用

Android網絡請求庫——android-async-http使用

編輯:關於Android編程

在iOS開發中有大名鼎鼎的ASIHttpRequest庫,用來處理網絡請求操作,今天要介紹的是一個在Android上同樣強大的網絡請求庫android-async-http,目前非常火的應用Instagram和Pinterest的Android版就是用的這個網絡請求庫。這個網絡請求庫是基於Apache HttpClient庫之上的一個異步網絡請求處理庫,網絡處理均基於Android的非UI線程,通過回調方法處理請求結果。 其主要特征如下: 處理異步Http請求,並通過匿名內部類處理回調結果 Http請求均位於非UI線程,不會阻塞UI操作 通過線程池處理並發請求 處理文件上傳、下載 響應結果自動打包JSON格式 自動處理連接斷開時請求重連 使用android-async-http也非常簡單,文章下面是下載jar地址,導入工程中libs文件夾下並添加到工程路徑即可。通過下面的代碼來創建一個異步請求:
AsyncHttpClient client = new AsyncHttpClient();  
                client.get("http://www.baidu.com", new AsyncHttpResponseHandler() {  
                      
                    @Override  
                    public void onSuccess(String response) {  
                        System.out.println(response);  
                        textView.setText(response);  
                    }  
                      
                    @Override  
                    public void onStart() {  
                        super.onStart();  
                        System.out.println("onStart");  
                    }  
                      
                    @Override  
                    public void onFinish() {  
                        super.onFinish();  
                        System.out.println("onFinish");  
                    }  
                      
                }  
通過Get請求指定的URL並通過回調函數處理請求結果,同時,請求方式還支持POST和PUT,請求的同時還支持參數傳遞,下面看看如何通過JSON字符串作為參數訪問服務器:
try {  
                    JSONObject jsonObject = new JSONObject();  
                    jsonObject.put("username", "ryantang");  
                    StringEntity stringEntity = new StringEntity(jsonObject.toString());  
                    client.post(MainActivity.this, "http://api.com/login", stringEntity, "application/json", new JsonHttpResponseHandler(){  
  
                        @Override  
                        public void onSuccess(JSONObject jsonObject) {  
                            super.onSuccess(jsonObject);  
                              
                        }  
                          
                    });  
                } catch (JSONException e) {  
                    e.printStackTrace();  
                } catch (UnsupportedEncodingException e) {  
                    e.printStackTrace();  
                }  

官方推薦的使用方法,使用一個靜態的請求對象。
public class HttpUtil {

	private static AsyncHttpClient client = new AsyncHttpClient(); // 實例話對象

	static {

		client.setTimeout(10000); // 設置鏈接超時,如果不設置,默認為10s
	}

	// 用一個完整url獲取一個string對象
	public static void get(String urlString, AsyncHttpResponseHandler res) 
	{

		client.get(urlString, res);

	}

	// url裡面帶參數
	public static void get(String urlString, RequestParams params,
			AsyncHttpResponseHandler res){

		client.get(urlString, params, res);

	}

	// 不帶參數,獲取json對象或者數組
	public static void get(String urlString, JsonHttpResponseHandler res) {
		client.get(urlString, res);

	}

	// 帶參數,獲取json對象或者數組
	public static void get(String urlString, RequestParams params,
			JsonHttpResponseHandler res) {

		client.get(urlString, params, res);

	}

	// 下載數據使用,會返回byte數據
	public static void get(String uString, BinaryHttpResponseHandler bHandler) {

		client.get(uString, bHandler);

	}

	public static AsyncHttpClient getClient(){

		return client;
	}

}

下載:
 public void downloadClick(View view) {
        String url = "http://f.hiphotos.baidu.com/album/w%3D2048/sign=38c43ff7902397ddd6799f046dbab3b7/9c16fdfaaf51f3dee973bf7495eef01f3b2979d8.jpg";
        HttpUtil.get(url, new BinaryHttpResponseHandler() {
            @Override
            public void onSuccess(byte[] arg0) {
                super.onSuccess(arg0);
                File file = Environment.getExternalStorageDirectory();
                File file2 = new File(file, "cat");
                file2.mkdir();
                file2 = new File(file2, "cat.jpg");
                try {
                    FileOutputStream oStream = new FileOutputStream(file2);
                    oStream.write(arg0);
                    oStream.flush();
                    oStream.close();
                    textView.setText("可愛的貓咪已經保存在sdcard裡面");
                } catch (Exception e) {
                    e.printStackTrace();
                    Log.i("hck", e.toString());
                }
            }
        });
    }
上傳:
public void uploadClick(View view){
    	String path="http://10.0.2.2:8080/jsontest/servlet/UploadServlet";
    	File myFile = new File("/sdcard/cat/cat.jpg");
    	RequestParams params = new RequestParams();
    	try {
    	    params.put("filename", myFile);
    	    
    	    AsyncHttpClient client = new AsyncHttpClient();
    	    client.post(path, params, new AsyncHttpResponseHandler(){

				@Override
				public void onSuccess(int statusCode, String content) {
					// TODO Auto-generated method stub
					super.onSuccess(statusCode, content);
					Toast.makeText(MainActivity.this, "上傳成功!", Toast.LENGTH_LONG).show();
				}
    	    	
    	    	
    	    });
    	    
    	} catch(FileNotFoundException e) {
    		
    	}
    }

由於涉及網絡請求,最後別忘了添加權限:
  

連網框架下載地址




  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved