iOS NSURLSessionDownloadTask实现文件断点下载的方法
程序员文章站
2023-12-16 15:22:40
所谓断点下载:就是实现开始、暂停、继续以及取消等操作。上一篇我们已经谈到了通过设置代理实现文件的连续下载,也就是文件从开始一直到下载完成,中途不中断。这种方式比较适用一些小...
所谓断点下载:就是实现开始、暂停、继续以及取消等操作。上一篇我们已经谈到了通过设置代理实现文件的连续下载,也就是文件从开始一直到下载完成,中途不中断。这种方式比较适用一些小文件的下载,比如:微信里面的表情包下砸。就算中途因为其他原因中断了下载,我们重新开始下载也不会浪费用户很多流量,用户体验也不会因此变的很差。
在实现断点下载之前:我们需要清楚对什么进行断点下载,是对网络请求nsurlsession还是对任务nsurlsessiondownloadtask。下载文件只会发送一次请求,我们操作应该是任务。
nsurlsessiontask部分方法截图:
.m文件代码
#import "viewcontroller.h" @interface viewcontroller ()<nsurlsessiondownloaddelegate> @property (nonatomic, strong) nsurlsessiondownloadtask *downloadtask; @property (nonatomic, strong) nsdata *resumdata; @property (nonatomic, strong) nsurlsession *session; @end @implementation viewcontroller // 开始下载 - (ibaction)startbtnclick:(id)sender { //1.url nsurl *url = [nsurl urlwithstring:@"http://120.25.226.186:32812/resources/videos/minion_01.mp4"]; //2.创建请求对象 nsurlrequest *request = [nsurlrequest requestwithurl:url]; //3.创建session nsurlsessionconfiguration *config = [nsurlsessionconfiguration defaultsessionconfiguration]; self.session = [nsurlsession sessionwithconfiguration:config delegate:self delegatequeue:[nsoperationqueue mainqueue]]; //4.创建task nsurlsessiondownloadtask *downloadtask = [self.session downloadtaskwithrequest:request]; //5.执行task [downloadtask resume]; self.downloadtask = downloadtask; } //暂停是可以恢复 - (ibaction)suspendbtnclick:(id)sender { nslog(@"+++++++++++++++++++暂停"); [self.downloadtask suspend]; } //cancel:取消是不能恢复 //cancelbyproducingresumedata:是可以恢复 - (ibaction)cancelbtnclick:(id)sender { nslog(@"+++++++++++++++++++取消"); //[self.downloadtask cancel]; //恢复下载的数据!=文件数据,也就是记录开始下载的位置的相关信息,倘若是已下载的文件数据,就会存在内存增大的问题 [self.downloadtask cancelbyproducingresumedata:^(nsdata * _nullable resumedata) { self.resumdata = resumedata; }]; } - (ibaction)goonbtnclick:(id)sender { nslog(@"+++++++++++++++++++恢复下载"); if(self.resumdata) { self.downloadtask = [self.session downloadtaskwithresumedata:self.resumdata]; } [self.downloadtask resume]; } #pragma mark ---------------------- #pragma mark nsurlsessiondownloaddelegate /** * 写数据 * * @param session 会话对象 * @param downloadtask 下载任务 * @param byteswritten 本次写入的数据大小 * @param totalbyteswritten 下载的数据总大小 * @param totalbytesexpectedtowrite 文件的总大小 */ -(void)urlsession:(nsurlsession *)session downloadtask:(nsurlsessiondownloadtask *)downloadtask didwritedata:(int64_t)byteswritten totalbyteswritten:(int64_t)totalbyteswritten totalbytesexpectedtowrite:(int64_t)totalbytesexpectedtowrite { //1. 获得文件的下载进度 nslog(@"%f",1.0 * totalbyteswritten/totalbytesexpectedtowrite); } /** * 当恢复下载的时候调用该方法 * * @param fileoffset 从什么地方下载 * @param expectedtotalbytes 文件的总大小 */ -(void)urlsession:(nsurlsession *)session downloadtask:(nsurlsessiondownloadtask *)downloadtask didresumeatoffset:(int64_t)fileoffset expectedtotalbytes:(int64_t)expectedtotalbytes { nslog(@"%s",__func__); } /** * 当下载完成的时候调用 * * @param location 文件的临时存储路径 */ -(void)urlsession:(nsurlsession *)session downloadtask:(nsurlsessiondownloadtask *)downloadtask didfinishdownloadingtourl:(nsurl *)location { nslog(@"%@",location); //1 拼接文件全路径 nsstring *fullpath = [[nssearchpathfordirectoriesindomains(nscachesdirectory, nsuserdomainmask, yes) lastobject] stringbyappendingpathcomponent:downloadtask.response.suggestedfilename]; //2 剪切文件 [[nsfilemanager defaultmanager]moveitematurl:location tourl:[nsurl fileurlwithpath:fullpath] error:nil]; nslog(@"%@",fullpath); } /** * 请求结束 */ -(void)urlsession:(nsurlsession *)session task:(nsurlsessiontask *)task didcompletewitherror:(nserror *)error { nslog(@"didcompletewitherror"); } @end
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。