IOS 网络开发NSURLSession(四)UploadTask(上传数据+图片)

原创blog,转载请注明出处 blog.csdn.net/hello_hwc

前言: UploadTask继承自DataTask。不难理解,因为UploadTask只不过在Http请求的时候,把数据放到Http Body中。所以,用UploadTask来做的事情,通常直接用DataTask也可以实现。不过,能使用封装好的API会省去很多事情,何乐而不为呢? Demo下载链接 Demo里包括了三种Task的使用,我想对想要学习NSURLSession的初学者还是有点帮助的。

Demo效果

上传数据 使用一个工具网站,想要学习RestAPI的同学可以使用这个网站的API做一些练习。

上传图片,图片可以拍照,也可以从相册里选取,上传的返回data是一个html网页,用webview显示。 这里的上传服务器也是选择一个共工具网站

一 NSURLSessionUploadTask概述1.1NSMutableURLRequest

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

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

HTTP header的具体信息参见Wiki,常用的header一定要熟悉

1.2 三种上传数据的方式

NSData - 如果对象已经在内存里 使用以下两个函数初始化

uploadTaskWithRequest:fromData: uploadTaskWithRequest:fromData:completionHandler:

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

File-如果对象在磁盘上,这样做有助于降低内存使用。 使用以下两个函数进行初始化

uploadTaskWithRequest:fromFile: :

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

Stream 使用这个函数创建

uploadTaskWithStreamedRequest:

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

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

1 .3 代理方法

使用这个代理方法获得upload的进度。其他的代理方法 NSURLSessionDataDelegate,NSURLSessionDelegate,NSURLSessionTaskDelegate同样适用于UploadTask

-(void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didSendBodyData:(int64_t)bytesSent totalBytesSent:(int64_t)totalBytesSent totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend;二 上传数据

核心代码如下

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:dataToUploaddicoptions:NSJSONWritingPrettyPrintederror:nil];NSURLSessionUploadTask * uploadtask = [self.session uploadTaskWithRequest:request fromData:data completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {if (!error) {:kNilOptions error:nil];self.responselabel.text = dictionary.description;}else{:UIAlertControllerStyleAlert];[:@”OK” style:UIAlertActionStyleCancel handler:nil]];[:YES completion:nil];}}];[uploadtask resume];三 上传图片

核心部分代码

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(,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];= YES;[self.spinner stopAnimating];[self.spinner removeFromSuperview];}];[uploadtask resume];人若勇敢就是自己最好的朋友

IOS 网络开发NSURLSession(四)UploadTask(上传数据+图片)

相关文章:

你感兴趣的文章:

标签云: