AFURLSessionManager 上傳下載使用

來源:互聯網
上載者:User

標籤:multi   enc   view   ges   null   nts   sync   err   example   

1、下載 Creating a Download Task

    NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];      AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:configuration];            NSURL *URL = [NSURL URLWithString:@"http://example.com/download.zip"];      NSURLRequest *request = [NSURLRequest requestWithURL:URL];            NSURLSessionDownloadTask *downloadTask = [manager downloadTaskWithRequest:request progress:nil destination:^NSURL *(NSURL *targetPath, NSURLResponse *response) {          NSURL *documentsDirectoryURL = [[NSFileManager defaultManager] URLForDirectory:NSDocumentDirectory inDomain:NSUserDomainMask appropriateForURL:nil create:NO error:nil];          return [documentsDirectoryURL URLByAppendingPathComponent:[response suggestedFilename]];      } completionHandler:^(NSURLResponse *response, NSURL *filePath, NSError *error) {          NSLog(@"File downloaded to: %@", filePath);      }];      [downloadTask resume];  

 

2、上傳 Creating an Upload Task

    NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];      AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:configuration];            NSURL *URL = [NSURL URLWithString:@"http://example.com/upload"];      NSURLRequest *request = [NSURLRequest requestWithURL:URL];            NSURL *filePath = [NSURL fileURLWithPath:@"file://path/to/image.png"];      NSURLSessionUploadTask *uploadTask = [manager uploadTaskWithRequest:request fromFile:filePath progress:nil completionHandler:^(NSURLResponse *response, id responseObject, NSError *error) {          if (error) {              NSLog(@"Error: %@", error);          } else {              NSLog(@"Success: %@ %@", response, responseObject);          }      }];      [uploadTask resume];  

 

3、批量上傳 Creating an Upload Task for a Multi-Part Request, with Progress

    NSMutableURLRequest *request = [[AFHTTPRequestSerializer serializer] multipartFormRequestWithMethod:@"POST" URLString:@"http://example.com/upload" parameters:nil constructingBodyWithBlock:^(id<AFMultipartFormData> formData) {              [formData appendPartWithFileURL:[NSURL fileURLWithPath:@"file://path/to/image.jpg"] name:@"file" fileName:@"filename.jpg" mimeType:@"image/jpeg" error:nil];          } error:nil];            AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:[NSURLSessionConfiguration defaultSessionConfiguration]];            NSURLSessionUploadTask *uploadTask;      uploadTask = [manager                    uploadTaskWithStreamedRequest:request                    progress:^(NSProgress * _Nonnull uploadProgress) {                        // This is not called back on the main queue.                        // You are responsible for dispatching to the main queue for UI updates                        dispatch_async(dispatch_get_main_queue(), ^{                            //Update the progress view                            [progressView setProgress:uploadProgress.fractionCompleted];                        });                    }                    completionHandler:^(NSURLResponse * _Nonnull response, id  _Nullable responseObject, NSError * _Nullable error) {                        if (error) {                            NSLog(@"Error: %@", error);                        } else {                            NSLog(@"%@ %@", response, responseObject);                        }                    }];            [uploadTask resume];  

 

4、資料任務 Creating a Data Task

    NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];      AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:configuration];            NSURL *URL = [NSURL URLWithString:@"http://httpbin.org/get"];      NSURLRequest *request = [NSURLRequest requestWithURL:URL];            NSURLSessionDataTask *dataTask = [manager dataTaskWithRequest:request completionHandler:^(NSURLResponse *response, id responseObject, NSError *error) {          if (error) {              NSLog(@"Error: %@", error);          } else {              NSLog(@"%@ %@", response, responseObject);          }      }];      [dataTask resume];  

 

5、請求參數設定 Request Serialization

Request serializers create requests from URL strings, encoding parameters as either a query string or HTTP body.

    NSString *URLString = @"http://example.com";      NSDictionary *parameters = @{@"foo": @"bar", @"baz": @[@1, @2, @3]};  

 

AFURLSessionManager 上傳下載使用

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.