• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - NSURLSession:调用cancelByProducingResumeData后无法获取恢复数据

[复制链接]
菜鸟教程小白 发表于 2022-12-13 15:41:12 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我想在用户取消下载或发生错误后继续下载。但是当我调用 cancelByProducingResumeData 方法时,resumeDatanil。所以,我无法继续下载。我确定可以恢复下载链接,因为我们的PC客户端可以恢复下载该链接。 这是我的代码。这里是 the full project .

#import "ViewController.h"

@interface ViewController ()
{
    NSURLSession *_session;

}

@property (weak, nonatomic) IBOutlet UIProgressView *progressView;
@property NSURLSessionDownloadTask *netTask;
@property NSData *resumeData;
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.

    if (_session == nil) {
        NSURLSessionConfiguration *confi = [NSURLSessionConfiguration defaultSessionConfiguration];
        _session = [NSURLSession sessionWithConfiguration:confi delegate:self delegateQueue:[NSOperationQueue mainQueue]];
    }
}
- (IBAction)startActionid)sender {
    [self start];
}
- (IBAction)stopActonid)sender {
    [self stop];
}

- (void)stop {
    __weak typeof(self) vc = self;
    [self.netTask cancelByProducingResumeData:^(NSData * _Nullable resumeData) {
        vc.resumeData = resumeData;
        vc.netTask = nil;
    }];
}

- (void)start {
    if (self.resumeData != nil) {
        self.netTask = [_session downloadTaskWithResumeData:self.resumeData];
    } else {
        NSURL *downlaodURL = [NSURL URLWithString"http://sdl24.yunpan.cn/share.php?method=Share.download&cqid=37ef0df7c8155bacf55c237bd433ddd8&dt=24.02b6cbb4148de503fe35ddab08dac35b&e=1459317290&fhash=41181b28ff97806ef8469842b4a5eabc330a0c60&fname=feistudy%2B%2B%25E8%25AF%25AD%25E8%25A8%2580%25E5%25AD%25A6%25E4%25B9%25A0%25E6%2596%25B9%25E6%25B3%2595%25E8%25AE%25BA%25E8%25BF%25B0&fsize=87624815&nid=14471440239484082&st=e08142ab7c935cdd15ecc8851c82e819&xqid=22309244"];
        self.netTask = [_session downloadTaskWithURL:downlaodURL];
    }
    [self.netTask resume];
}

- (NSString*)filePath
{
    NSString *doc = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
    NSString *path = [doc stringByAppendingPathComponent"p.rmvb"];
    return path;
}

#pragma mark - NSURLSessionDownloadDelegate
- (void)URLSessionNSURLSession *)session downloadTaskNSURLSessionDownloadTask *)downloadTask
didFinishDownloadingToURLNSURL *)location
{
    dispatch_async(dispatch_get_main_queue(), ^{

        NSFileManager *manager = [NSFileManager defaultManager];
        [manager moveItemAtPath:location.path toPath:[self filePath] error:nil];
        NSLog(@"locaton.path:%@", location.path);
        NSLog(@"filePaht:%@",[self filePath]);
    });

}

- (void)URLSessionNSURLSession *)session downloadTaskNSURLSessionDownloadTask *)downloadTask
      didWriteDataint64_t)bytesWritten
 totalBytesWrittenint64_t)totalBytesWritten
totalBytesExpectedToWriteint64_t)totalBytesExpectedToWrite
{

    dispatch_async(dispatch_get_main_queue(), ^{
        double progress = totalBytesWritten/(double)totalBytesExpectedToWrite;
        NSLog(@"progress:%f",progress);
        self.progressView.progress = progress;
    });

}

#pragma mark - NSURLSessionTaskDelegate
- (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task
didCompleteWithError:(nullable NSError *)error
{
    if (error) {

        NSData *resumeData = error.userInfo[NSURLSessionDownloadTaskResumeData];
        self.resumeData = resumeData;
    }



}

@end



Best Answer-推荐答案


关于何时可以获取简历数据的要求很长。除其他事项外:

  • 响应必须包含 ETag 或 Last-Modified header 。
  • 我认为响应还必须包含一个 Accept-Ranges: bytes header
  • 临时文件必须仍然存在(磁盘空间不低)。
  • 必须是 HTTP 或 HTTPS 请求。
  • Last-Modified 或 ETag header 必须表明文件自上次请求以来未更改。

我可能忘记了其他要求,例如HTTP/1.1。

关于ios - NSURLSession:调用cancelByProducingResumeData后无法获取恢复数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36257103/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap