美文网首页Android学习
android网络请求框架

android网络请求框架

作者: null0007 | 来源:发表于2017-01-13 19:58 被阅读511次

    android application http arch

    Http 框架调查分析

    概述 app的http提供的是什么有的服务,对这些lib有哪些的性能要求,会容易出现什么错误?

    android中里各个部分处理都有一些成熟的框架,如在博客里作者的分析一样,这里主要分析网络请求的部分。

    android里的网络连接主要是socket和http。但http使用较多。

    1 android 网络请求框架概述

    1.1 较底层的封装

    如okhttp,基于http协议封装的一套客户端,面向真正的请求;

    httpClient,提供支持http协议的客户端编程工具包,实现了所有http方法,如GET POST等;

    HttpUrlConnection

    1.1.1 httpClient分析

    HttpClient是Apache Jakarta Common下的子项目,用来提供高效的、最新的、功能丰富的支持HTTP协议的客户端编程工具包,并且它支持HTTP协议最新的版本和建议。HttpClient已经应用在很多的项目中,比如Apache Jakarta上很著名的另外两个开源项目Cactus和HTMLUnit都使用了HttpClient。
    下载地址: http://hc.apache.org/downloads.cgi
    一个get的例子:

    HttpGet httpGet = new HttpGet("http://www.baidu.com");
    CloseableHttpResponse response = httpclient.execute(httpget);  
                try {  
                    HttpEntity entity = response.getEntity();  
                    if (entity != null) {  
                        System.out.println("Response content: " + EntityUtils.toString(entity));  
                    }  
                } finally {  
                    response.close();  
                }  
            } catch (ClientProtocolException e) {  
                e.printStackTrace();  
            } catch (ParseException e) {  
                e.printStackTrace();  
            } catch (IOException e) {  
                e.printStackTrace();  
            } finally {  
                try {  
                    httpclient.close();  
                } catch (IOException e) {  
                    e.printStackTrace();  
                }  
            }
    

    1.1.2 okHttp分析

    square实现的库,高效,支持SPDY,连接池、GZIP和 HTTP 缓存。默认情况下,OKHttp会自动处理常见的网络问题,像二次连接、SSL的握手问题。支持同步,异步,

    okHttp官网

    一个简单get的例子:

    OkHttpClient client = new OkHttpClient();
    
    String run(String url) throws IOException {
      Request request = new Request.Builder()
          .url(url)
          .build();
    
      Response response = client.newCall(request).execute();
      return response.body().string();
    }
    

    1.2 较高层的封装

    1.2.1 volley

    内部基于HttpUrlConnection,HttpClient,OkHttp

    google自己的,适合数据量不大,通信频繁的网络操作。不支持同步,不能post大数据,异步库,

    volley提供的功能:

    • json 图像的异步下载
    • 网络请求的排序
    • 网络请求的优先级处理
    • 缓存
    • 多级别的取消请求
    • 与Activity的交互

    volley的架构设计:

    基础结构为线程池,分为主线程,cache线程,network线程。

    links of blog

    volley arch

    get 的例子:

    private void loadGetStr(String url) {  
      
        StringRequest srReq = new StringRequest(Request.Method.GET, url,  
                new StrListener(), new StrErrListener()) {  
      
            protected final String TYPE_UTF8_CHARSET = "charset=UTF-8";  
      
            // 重写parseNetworkResponse方法改变返回头参数解决乱码问题  
            // 主要是看服务器编码,如果服务器编码不是UTF-8的话那么就需要自己转换,反之则不需要  
            @Override  
            protected Response<String> parseNetworkResponse(  
                    NetworkResponse response) {  
                try {  
                    String type = response.headers.get(HTTP.CONTENT_TYPE);  
                    if (type == null) {  
                        type = TYPE_UTF8_CHARSET;  
                        response.headers.put(HTTP.CONTENT_TYPE, type);  
                    } else if (!type.contains("UTF-8")) {  
                        type += ";" + TYPE_UTF8_CHARSET;  
                        response.headers.put(HTTP.CONTENT_TYPE, type);  
                    }  
                } catch (Exception e) {  
                }  
                return super.parseNetworkResponse(response);  
            }  
        };  
        srReq.setShouldCache(true); // 控制是否缓存  
        startVolley(srReq);  
    }  
    

    源码分析:

    arch:RequestQueue->Dispatch Thread ->Get Data Interface -> Data

    RequestQueue: StringRequest, JsonRequest,ImageRequest , ...

    DispatchTread: cacheDispatcher, NetworkDispatcher

    ...

    volley: API user via RequestQueue to launch a request queue, whitch contains the request need to send.
    Request: base class for all network requests.
    RequestQueue: 请求分发队列,
    cacheDispatcher: 处理缓存的请求的线程
    NetworkDispatcher: 处理网络请求的线程

    1.2.2 androi-async-http

    内部基于httpClient,异步库,android现在不推荐使用httpClient

    1.2.3 liteHttp

    框架简介博客地址

    1.2.4 Retrofit

    开发者是square,类似于volley的更高层的封装库,默认下面是okhttp。Retrofit简化了网络请求的流程,提供不同的Json Converter实现,提供RxJava支持,还有Dagger2.比volley解耦更彻底,

    retrofit提供的功能:

    • 配置不同的http client
    • 配置不同的反序列化工具来进行网络解析

    分析的links:http://www.jianshu.com/p/45cb536be2f4

    Alt text

    相关文章

      网友评论

        本文标题:android网络请求框架

        本文链接:https://www.haomeiwen.com/subject/wrisbttx.html