android 下载流文件的部分数据及断点续传的关键点header Range

想要异步下载文件数据流,比如下apk或者mp4文件等,但文件又不需要全部下载完毕就需要结束时

或者文件太大中间需要暂停时需要用的header range,就是在http请求时设置header中的range参数range:bytes=0-100000(开始点-结束点byte)

1.注意:range是需要你服务器支持的。一般访问某个网页,responseCode 是 http_ok 也就是 200,支持断点续传的话 一般responseCode 是 206,也就是说,首先需要服务器支持,所以有些不支持的服务器需要大家继续研究。(range在android里边或许需要大写:client.addHeader("RANGE", "bytes=1-1000000");

2.header说明:

Accept-Ranges 可以请求网页实体的一个或者多个子范围字段Accept-Ranges: bytes

Range 只请求实体的一部分,指定范围Range: bytes=1-1024*1024(startpoint- endpoint)

AsyncHttpClient 下载及说明地址:http://loopj.com/android-async-http/client.addHeader("RANGE", "bytes=1-1000000");即:实现setRequestProperty("RANGE", "bytes=1-1000000");

代码如下:

AsyncHttpClient client = new AsyncHttpClient();//事先下载jar包到lib目录    

                        String[] allowedContentTypes = new String[] { ".*" };//这里是下载所有文件类型
                        client.addHeader("RANGE", "bytes=1-1000000");
                        client.get(url3, new BinaryHttpResponseHandler(allowedContentTypes) {  
                                 @Override  
                                 public void onSuccess(int statusCode,byte[] imageData) {
                                     // Do something with the file  
                                     Log.i(TAG, "start"+statusCode);
                                     try {
                                        readByteData(imageData,1000);
                                    } catch (IOException e) {
                                        // TODO Auto-generated catch block
                                        Log.i(TAG, "err");
                                        e.printStackTrace();
                                    }
                                     Log.i(TAG, "end");
                                 }
                                 public void onFailure(int statusCode, byte[] binaryData) {
                                     // Response failed :(
                                     Log.i(TAG, "err"+statusCode);
                                 }
                               
                             });

一些说明


Accept-Ranges 表明服务器是否支持指定范围请求及哪种类型的分段请求 Accept-Ranges: bytes
Age 从原始服务器到代理缓存形成的估算时间(以秒计,非负) Age: 12
Allow 对某网络资源的有效的请求行为,不允许则返回405 Allow: GET, HEAD
Cache-Control 告诉所有的缓存机制是否可以缓存及哪种类型 Cache-Control: no-cache
Content-Encoding web服务器支持的返回内容压缩编码类型。 Content-Encoding: gzip
Content-Language 响应体的语言 Content-Language: en,zh
Content-Length 响应体的长度 Content-Length: 348
Content-Location 请求资源可替代的备用的另一地址 Content-Location: /index.htm
Content-MD5 返回资源的MD5校验值 Content-MD5: Q2hlY2sgSW50ZWdyaXR5IQ==
Content-Range 在整个返回体中本部分的字节位置 Content-Range: bytes 21010-47021/47022
Content-Type 返回内容的MIME类型 Content-Type: text/html; charset=utf-8
Date 原始服务器消息发出的时间 Date: Tue, 15 Nov 2010 08:12:31 GMT
ETag 请求变量的实体标签的当前值 ETag: “737060cd8c284d8af7ad3082f209582d”
Expires 响应过期的日期和时间 Expires: Thu, 01 Dec 2010 16:00:00 GMT
Last-Modified 请求资源的最后修改时间 Last-Modified: Tue, 15 Nov 2010 12:45:26 GMT
Location 用来重定向接收方到非请求URL的位置来完成请求或标识新的资源 Location: http://www.zcmhi.com/archives/94.html
Pragma 包括实现特定的指令,它可应用到响应链上的任何接收方 Pragma: no-cache
Proxy-Authenticate 它指出认证方案和可应用到代理的该URL上的参数 Proxy-Authenticate: Basic
refresh 应用于重定向或一个新的资源被创造,在5秒之后重定向(由网景提出,被大部分浏览器支持)

Refresh: 5; url=
http://www.zcmhi.com/archives/94.html
Retry-After 如果实体暂时不可取,通知客户端在指定时间之后再次尝试 Retry-After: 120
Server web服务器软件名称 Server: Apache/1.3.27 (Unix) (Red-Hat/Linux)
Set-Cookie 设置Http Cookie Set-Cookie: UserID=JohnDoe; Max-Age=3600; Version=1
Trailer 指出头域在分块传输编码的尾部存在 Trailer: Max-Forwards
Transfer-Encoding 文件传输编码 Transfer-Encoding:chunked
Vary 告诉下游代理是使用缓存响应还是从原始服务器请求 Vary: *
Via 告知代理客户端响应是通过哪里发送的 Via: 1.0 fred, 1.1 nowhere.com (Apache/1.1)
Warning 警告实体可能存在的问题 Warning: 199 Miscellaneous warning
WWW-Authenticate 表明客户端请求实体应该使用的授权方案 WWW-Authenticate: Basic

你可能感兴趣的:(android,android,下载文件,下载部分数据,http断点续传,header,range)