NSURLConnection下载文件并监测下载进度

NSURLConnection是iOS 2.0提供的API,目前已经过期

NSURLConnectionDownloadDelegate是专门为国外杂志类应用提供的代理方法,如果使用NSURLConnectionDownloadDelegate只能获取到进度,无法获取到文件

下载文件我们使用的是 NSURLConnectionDataDelegate 需要实现4个代理方法

//当接收到服务器的响应时, 调用的代理方法
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
//接收到服务器的数据, 这个方法会调用多次
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
//下载完成之后会调用的代理方法
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
//下载出错时回调方法
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
  • 示例代码:
#import "ViewController.h"
//NSURLConnectionDownloadDelegate
//是给国外杂志类应用专用的, 我们下载文件使用它,只能获取到下载进度, 没有下载完成之后的文件
@interface ViewController ()
//文件总大小
@property (nonatomic, assign) long long fileSize;
//本地已经下载了多少
@property (nonatomic, assign) long long currentSize;
//输出流
//不管输入流还是输出流, 参考对象都是内存
@property (nonatomic ,strong) NSOutputStream *output;
//下载的URLConnection
@property (nonatomic ,strong) NSURLConnection *conn;
//本地下载文件的存放路径
@property (nonatomic, copy) NSString *localFilePath;

@end

@implementation ViewController


- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    
    //拿到cache目录的路径
    NSString *path = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];
    //拼接文件的路径
    self.localFilePath = [path stringByAppendingPathComponent:@"www.zip"];
}

//获取本地沙盒已经下载的文件的大小
- (void)getLocalFileSize{
    NSLog(@"获取本地文件大小之前:%lld",self.currentSize);
    //操作本地文件的管理器
    NSFileManager *manager = [NSFileManager defaultManager];
    
    //attributesOfItemAtPath 返回给定路径文件的属性(大小, 时间)
    NSDictionary *dict = [manager attributesOfItemAtPath:self.localFilePath error:NULL];
    //给当前文件的大小的变量赋值
    //fileSize 返回本地文件的大小
    self.currentSize = dict.fileSize;
    NSLog(@"获取本地文件大小之后:%lld",self.currentSize);
}

//获取文件的总大小(从服务器上获取)
- (void)getServerFileSize{
    //1. url
    NSURL *url = [NSURL URLWithString:@"http://127.0.0.1/123.zip"];
    //2.request
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
    //设置HEAD请求方法
    request.HTTPMethod = @"HEAD";
    
    //创建NSURLResponse
    NSURLResponse *response  = [NSURLResponse new];
    
    //HEAD请求可以用同步的方法
    [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:NULL];
    
    //给文件总长度赋值
    self.fileSize = response.expectedContentLength;
}

//开始下载
- (IBAction)start:(id)sender {
    //开始下载文件
    [self downloadFile];
}

//暂停下载
- (IBAction)pause:(id)sender {
    /**Cancels an asynchronous load of a request.
     After this method is called, the connection makes no further delegate method calls. If you want to reattempt the connection, you should create a new connection object.*/
    
    //NSURLConnection 取消后, 不能恢复, 如果想重新使用, 必须再创建一个新的连接
    [self.conn cancel];
}

//继续下载
- (IBAction)resume:(id)sender {
    //继续下载文件
    [self downloadFile];

}

//具体下载文件的方法
- (void)downloadFile{
    dispatch_async(dispatch_get_global_queue(0, 0), ^{
        //从服务器获取文件的总大小
        [self getServerFileSize];
        [self getLocalFileSize];
        
        //本地文件已经存在并且是下载完成的,那么就不去下载
        if(self.currentSize == self.fileSize){
            NSLog(@"文件已下载完成, 请不要重复下载");
            return ;
        }
        
        //如果本地文件比服务器上的文件要大, 说明下载的本地文件有问题,删除本地文件,重新下载
        if (self.currentSize > self.fileSize) {
            //操作本地文件的管理器
            NSFileManager *manager = [NSFileManager defaultManager];
            [manager removeItemAtPath:self.localFilePath error:NULL];
            self.currentSize = 0;
        }
        
        //比较服务器文件的总大小和本地文件的总大小
        //1. url
        NSURL *url = [NSURL URLWithString:@"http://127.0.0.1/123.zip"];
        //2.request
        NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
        //设置请求头 Range
        NSString *range = [NSString stringWithFormat:@"bytes=%lld-",self.currentSize];
        [request setValue:range forHTTPHeaderField:@"Range"];
        
        // 使用下面的方法 NSURLConnection就会自动去请求数据了
        self.conn = [NSURLConnection connectionWithRequest:request delegate:self];
        
        //运行循环--- 处理一些事件(点击, 触摸, 移动), 定时器, 任务
        //开启子线程的运行循环--- 如果要想子线程运行任务,必须要手动开启运行循环
        [[NSRunLoop currentRunLoop] run];
    });

}

#pragma mark - NSURLConnectionDataDelegate

//当接收到服务器的响应时, 调用的代理方法
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response{
    NSLog(@"%@接收到服务器的响应:" ,response);
    NSLog(@"%@",[NSThread currentThread]);

    //创建输出流
    //append 表示是否是添加数据
    self.output = [NSOutputStream outputStreamToFileAtPath:self.localFilePath append:YES];
    
    [self.output open];
}

//接收到服务器的数据, 这个方法会调用多次
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data{
    NSLog(@"%@",[NSThread currentThread]);

//    NSLog(@"%lu接收到服务器文件的数据:" ,(unsigned long)data.length);
    self.currentSize += data.length;
    
    //计算下载进度
    float progress =  self.currentSize*1.0/self.fileSize;
    
    NSLog(@"%f%%",progress*100);
    
    //通过输出流往沙盒里写数据
    [self.output write:data.bytes maxLength:data.length];
}

//下载完成之后会调用的代理方法
- (void)connectionDidFinishLoading:(NSURLConnection *)connection{
     NSLog(@"下载完成");
    NSLog(@"%@",[NSThread currentThread]);

    //关闭输出流
    [self.output close];
}

//下载出错时回调方法
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error{
    NSLog(@"下载出错了,请重新下载");
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end
  • 注意点:
1.使用带有block回调的方法只能获取到文件,无法获取到下载进度,所以需要使用下面的方式:
    self.conn = [NSURLConnection connectionWithRequest:request delegate:self];
2.检测下载进度:开始下载前获取本地沙盒文件大小,结合HEAD方法请求到的文件总大小,计算当前下载进度
    - (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data;
3.保存下载的文件:每次接收到的都是一个数据块,需要将数据拼接成一个完成文件
4.解决内存暴涨:通过传统的NSMutableData存储,会导致内存暴涨的问题,使用NSOutputStream输出流解决内存暴涨问题(实例化后需要开启输出流,使用完记得关闭)
5.子线程下载:代理方法默认全部在主线程执行,将整个请求操作放入异步执行,需要手动开启子线程的消息循环(sendSynchronousRequest方法默认已经处理好,而connectionWithRequest: delegate:方法需要手动开启)
  这里是将整个下载文件的请求操作放入了异步执行,另外一种方式是设置请求执行的队列:
    [self.conn setDelegateQueue:<#(nullable NSOperationQueue *)#>];
6.断点续传的逻辑:
    1. 发送请求之前都要去获取文件的总大小 (HEAD 方法去服务器获取), (我们下载的文件是从服务器来的, 所以服务器文件大小才是正确)
       为什么要从服务器获取文件的长度 (因为我们设置Range 请求头字段, 所以服务器返回的文件的大小只是你要下载的大小, 而并不是文件的总大小, 所以我们要想一种办法,去获取文件的大小)
    2. 进入程序, 先从沙盒路径获取文件
      2.1 如果文件不存在, 说明之前没下载, 是第一次下载
          在程序不退出的情况下, 暂停继续,没问题 (继续的时候要正确的设置Range请求头字段)
          如果在文件没有下载完,程序退出了. (进入2.2的逻辑)
      2.2 如果文件存在, 说明之前下载过了, 获取文件大小
          获取文件大小的目的是: 不管是点击开始下载还是继续, 都要去设置Range请求头字段
      2.3 如果本地的文件比文件的总大小要大, 删除本地文件并且重新下载
          使用HEAD方法获取到服务器上文件的总大小,通过本地沙盒获取到本地文件目前大小,根据请求Range字段获取下载文件的起始字节数
          NSURLConnection取消后,不能恢复, 如果想重新下载, 必须再创建一个新的连接

你可能感兴趣的:(NSURLConnection下载文件并监测下载进度)