objective-c – AFNetworking暂停/恢复下载大文件

前端之家收集整理的这篇文章主要介绍了objective-c – AFNetworking暂停/恢复下载大文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要使用我的iPad应用程序下载大型.zip文件(最大800 MB).
如果取消下载或应用程序在后台,我想再次恢复下载.
  1. operation = [[AFHTTPRequestOperation alloc] initWithRequest:request];
  2. operation.outputStream = [NSOutputStream outputStreamToFileAtPath:filePath append:YES];
  3.  
  4. [operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation,id responSEObject){
  5.  
  6. // unzip the .zip
  7.  
  8.  
  9. }failure:^(AFHTTPRequestOperation *operation,NSError *error){
  10.  
  11. //Handle the error
  12.  
  13. }];
  14.  
  15.  
  16. [operation setDownloadProgressBlock:^(NSInteger bytesWritten,long long totalBytesWritten,long long totalBytesExpectedToWrite) {
  17.  
  18. //update the progressView
  19.  
  20. }];
  21.  
  22. [operation setShouldExecuteAsBackgroundTaskWithExpirationHandler:^{
  23.  
  24. // What I have to do here?
  25.  
  26. }];
  27.  
  28. [operation start];
  29. [operation waitUntilFinished];
  30.  
  31.  
  32. -(void)applicationWillResignActive:(UIApplication *)application{
  33.  
  34. // What I have to do here?
  35.  
  36. }

谢谢你的帮助.

解决方法

您可以使用AFDownloadRequestOperation执行此操作.
  1. NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"....zip"]];
  2. NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES);
  3. NSString *path = [[paths objectAtIndex:0] stringByAppendingPathComponent:@"....zip"];
  4. AFDownloadRequestOperation *operation = [[AFDownloadRequestOperation alloc] initWithRequest:request targetPath:path shouldResume:YES];
  5. [operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation,id responSEObject) {
  6. NSLog(@"Successfully downloaded file to %@",path);
  7. } failure:^(AFHTTPRequestOperation *operation,NSError *error) {
  8. NSLog(@"Error: %@",error);
  9. }];
  10. [operation setProgressiveDownloadProgressBlock:^(NSInteger bytesRead,long long totalBytesRead,long long totalBytesExpected,long long totalBytesReadForFile,long long totalBytesExpectedToReadForFile) {
  11. NSLog(@"Operation%i: bytesRead: %d",1,bytesRead);
  12. NSLog(@"Operation%i: totalBytesRead: %lld",totalBytesRead);
  13. NSLog(@"Operation%i: totalBytesExpected: %lld",totalBytesExpected);
  14. NSLog(@"Operation%i: totalBytesReadForFile: %lld",totalBytesReadForFile);
  15. NSLog(@"Operation%i: totalBytesExpectedToReadForFile: %lld",totalBytesExpectedToReadForFile);
  16. }];
  17. [operations addObject:operation];

重新启动应用程序并生成具有相同URL的请求后,它将继续下载.“shouldResume:YES”有效

猜你在找的C&C++相关文章