zoukankan      html  css  js  c++  java
  • Android’s HTTP Clients

    Android’s HTTP Clients

    Most network-connected Android apps will use HTTP to send and receive data. Android includes two HTTP clients: HttpURLConnection and Apache HTTP Client. Both support HTTPS, streaming uploads and downloads, configurable timeouts, IPv6 and connection pooling.

    Apache HTTP Client

    DefaultHttpClient and its sibling AndroidHttpClient are extensible HTTP clients suitable for web browsers. They have large and flexible APIs. Their implementation is stable and they have few bugs.

    But the large size of this API makes it difficult for us to improve it without breaking compatibility. The Android team is not actively working on Apache HTTP Client.

    HttpURLConnection

    HttpURLConnection is a general-purpose, lightweight HTTP client suitable for most applications. This class has humble beginnings, but its focused API has made it easy for us to improve steadily.

    Prior to Froyo, HttpURLConnection had some frustrating bugs. In particular, calling close() on a readable InputStream could poison the connection pool. Work around this by disabling connection pooling:

    private void disableConnectionReuseIfNecessary() {
        // HTTP connection reuse which was buggy pre-froyo
        if (Integer.parseInt(Build.VERSION.SDK) < Build.VERSION_CODES.FROYO) {
            System.setProperty("http.keepAlive", "false");
        }
    }

    In Gingerbread, we added transparent response compression. HttpURLConnection will automatically add this header to outgoing requests, and handle the corresponding response:

    Accept-Encoding: gzip

    Take advantage of this by configuring your Web server to compress responses for clients that can support it. If response compression is problematic, the class documentation shows how to disable it.

    Since HTTP’s Content-Length header returns the compressed size, it is an error to usegetContentLength() to size buffers for the uncompressed data. Instead, read bytes from the response until InputStream.read() returns -1.

    We also made several improvements to HTTPS in Gingerbread. HttpsURLConnection attempts to connect withServer Name Indication (SNI) which allows multiple HTTPS hosts to share an IP address. It also enables compression and session tickets. Should the connection fail, it is automatically retried without these features. This makes HttpsURLConnection efficient when connecting to up-to-date servers, without breaking compatibility with older ones.

    In Ice Cream Sandwich, we are adding a response cache. With the cache installed, HTTP requests will be satisfied in one of three ways:

    • Fully cached responses are served directly from local storage. Because no network connection needs to be made such responses are available immediately.

    • Conditionally cached responses must have their freshness validated by the webserver. The client sends a request like “Give me /foo.png if it changed since yesterday” and the server replies with either the updated content or a 304 Not Modified status. If the content is unchanged it will not be downloaded!

    • Uncached responses are served from the web. These responses will get stored in the response cache for later.

    Use reflection to enable HTTP response caching on devices that support it. This sample code will turn on the response cache on Ice Cream Sandwich without affecting earlier releases:

    private void enableHttpResponseCache() {
        try {
            long httpCacheSize = 10 * 1024 * 1024; // 10 MiB
            File httpCacheDir = new File(getCacheDir(), "http");
            Class.forName("android.net.http.HttpResponseCache")
                .getMethod("install", File.class, long.class)
                .invoke(null, httpCacheDir, httpCacheSize);
        } catch (Exception httpResponseCacheNotAvailable) {
        }
    }

    You should also configure your Web server to set cache headers on its HTTP responses.

    Which client is best?

    Apache HTTP client has fewer bugs on Eclair and Froyo. It is the best choice for these releases.

    For Gingerbread and better, HttpURLConnection is the best choice. Its simple API and small size makes it great fit for Android. Transparent compression and response caching reduce network use, improve speed and save battery. New applications should use HttpURLConnection; it is where we will be spending our energy going forward.

      在官方blog中,android工程师谈到了如何去选择apache client和httpurlconnection的问题: 
      原文见http://android-developers.blogspot.com/2011/09/androids-http-clients.html 
    这里小结下几点。 

    1) apache httpclient比较稳定点,少BUG,但由于API的关系,扩展改造麻烦点, 
    所以android team现在不鸟这东西了基本 

    2) httpurlconnection比较轻便,灵活,易于扩展,在2。2前有个BUG, 
    见http://code.google.com/p/android/issues/detail?id=2939 
      可以通过如下代码去解决: 
     

    Java代码  收藏代码
    1. private void disableConnectionReuseIfNecessary() {    
    2.   // HTTP connection reuse which was buggy pre-froyo     
    3.  if (Integer.parseInt(Build.VERSION.SDK) < Build.VERSION_CODES.FROYO) {        System.setProperty("http.keepAlive""false");     
    4.  }  
    5. }  


    3) 在Gingerbread中,httpurlconnection会增加对压缩报文头的处理,服务端可以用 
    GZIP,详细见: 
      http://developer.android.com/reference/java/net/HttpURLConnection.html 

    4) 对HTTPURLCONECTION中,在3。0后以及4。0中都进行了改善,比如对HTTPS的支持, 
    在4。0中,还增加了对缓存的支持呢!比如下面的代码: 

    Java代码  收藏代码
    1. private void enableHttpResponseCache()   
    2. {    
    3.   try {  
    4.         long httpCacheSize = 10 * 1024 * 1024// 10 MiB      
    5.     File httpCacheDir = new File(getCacheDir(), "http");      
    6.     Class.forName("android.net.http.HttpResponseCache").getMethod("install", File.classlong.class.invoke(null, httpCacheDir, httpCacheSize);     
    7.  }   
    8. catch   
    9. (Exception httpResponseCacheNotAvailable) {    
    10.   }  
    11. }  



      最后的建议,Gingerbread后的版本,都建议用httpurlconnection,获得更高的性能

  • 相关阅读:
    面试题63 二叉搜索树的第k个结点
    面试题62 序列化二叉树
    面试题61 把二叉树打印成多行
    面试题60 按之字形顺序打印二叉树
    centos下Nginx代理访问web服务
    回文数
    两数之和--哈希表unordered_map
    删除链表的倒数第N个节点---链表的应用
    基础篇,排序(冒泡排序,快速排序)
    linuxC网络聊天室简单代码,CSDN博客迁移
  • 原文地址:https://www.cnblogs.com/xitang/p/3126766.html
Copyright © 2011-2022 走看看