iOS网络开发之NSURLSession学习<4>

这篇文章会详细讲解NSURLSessionUploadTask内容

UploadTask继承自DataTask。不难理解,因为UploadTask只不过在Http请求的时候,把数据放到Http Body中。所以,用UploadTask来做的事情,通常直接用DataTask也可以实现。不过,能使用封装好的API会省去很多事情,何乐而不为呢?

一.NSURLSessionUploadTask概述

1.NSMutableURLRequest

上传数据的时候,一般要使用REST API里的PUT或者POST方法。所以,要通过这个类来设置一些HTTP配置信息。常见的包括:

  • timeoutInterval //timeout的时间间隔
  • HTTPMethod //HTTP方法
  • – addValue:forHTTPHeaderField:或者– setValue:forHTTPHeaderField://设置HTTP表头信息

2.三种上传数据的方式

<1>NSData: 如果对象已经在内存里

  • uploadTaskWithRequest:fromData:
  • uploadTaskWithRequest:fromData:completionHandler:

Session会自动计算Content-length的Header
通常,还需要提供一些服务器需要的Header,Content-Type等。

<2>File:如果对象在磁盘上,这样做有助于降低内存使用

使用以下两个函数进行初始化

  • uploadTaskWithRequest:fromFile:
  • uploadTaskWithRequest:fromFile:completionHandler:

同样,会自动计算Content-Length,如果App没有提供Content-Type,Session会自动创建一个。如果Server需要额外的Header信息,也要提供。

<3>Stream

使用这个函数创建

uploadTaskWithStreamedRequest

注意,这种情况下一定要提供Server需要的Header信息,例如Content-Type和Content-Length。

使用Stream一定要实现这个代理方法,因为Session没办法在重新尝试发送Stream的时候找到数据源。(例如需要授权信息的情况)。这个代理函数,提供了Stream的数据源。

URLSession:task:needNewBodyStream:

二.代理方法:

使用这个代理方法获得upload的进度

-(void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didSendBodyData:(int64_t)bytesSent totalBytesSent:(int64_t)totalBytesSent totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend;

三.示例代码

1.上传数据

    NSMutableURLRequest * request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"http://jsonplaceholder.typicode.com/posts"]];    

[request addValue:@"application/json" forHTTPHeaderField:@"Content-Type"];//这一行一定不能少,因为后面是转换成JSON发送的    

[request addValue:@"application/json" forHTTPHeaderField:@"Accept"];    

[request setHTTPMethod:@"POST"];    

[request setCachePolicy:NSURLRequestReloadIgnoringCacheData];

[request setTimeoutInterval:20];    

NSDictionary * dataToUploaddic = @{self.keytextfield.text:self.valuetextfield.text};    

NSData * data = [NSJSONSerialization dataWithJSONObject:dataToUploaddic                                                    options:NSJSONWritingPrettyPrinted                                                      error:nil];    

NSURLSessionUploadTask * uploadtask = [self.session uploadTaskWithRequest:request fromData:data completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {        
if (!error) {            

NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:nil];            

self.responselabel.text = dictionary.description;        
}else{            

UIAlertController * alert = [UIAlertController alertControllerWithTitle:@"Error" message:error.localizedFailureReason preferredStyle:UIAlertControllerStyleAlert];            

[alert addAction:[UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleCancel handler:nil]];            

[self presentViewController:alert animated:YES completion:nil];        }    }];    

[uploadtask resume];

2.上传图片

 NSMutableURLRequest * request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"http://www.freeimagehosting.net/upload.php"]];    

[request addValue:@"image/jpeg" forHTTPHeaderField:@"Content-Type"];    


[request addValue:@"text/html" forHTTPHeaderField:@"Accept"];    

[request setHTTPMethod:@"POST"];    

[request setCachePolicy:NSURLRequestReloadIgnoringCacheData];    

[request setTimeoutInterval:20];    

NSData * imagedata = UIImageJPEGRepresentation(self.imageview.image,1.0);    

NSURLSessionUploadTask * uploadtask = [self.session uploadTaskWithRequest:request fromData:imagedata completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {        

NSString * htmlString = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];        

UploadImageReturnViewController * resultvc = [self.storyboard instantiateViewControllerWithIdentifier:@"resultvc"];        

resultvc.htmlString = htmlString;        

[self.navigationController pushViewController:resultvc animated:YES];        

self.progressview.hidden = YES;        

[self.spinner stopAnimating];        

[self.spinner removeFromSuperview];    }];    

[uploadtask resume];

代理方法:

-(void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didSendBodyData:(int64_t)bytesSent totalBytesSent:(int64_t)totalBytesSent totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend{    

self.progressview.progress = totalBytesSent/(float)totalBytesExpectedToSend;

}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值