上传

一 NSURLSessionUploadTask概述

1.1NSMutableURLRequest

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

timeoutInterval //timeout的时间间隔

HTTPMethod //HTTP方法

//设置HTTP表头信息

– addValue:forHTTPHeaderField:

– setValue:forHTTPHeaderField:

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

http://en.wikipedia.org/wiki/List_of_HTTP_header_fields

1.2 三种上传数据的方式

NSData - 如果对象已经在内存里

使用以下两个函数初始化

uploadTaskWithRequest:fromData:

uploadTaskWithRequest:fromData:completionHandler:

Session会自动计算Content-length的Header

通常,还需要提供一些服务器需要的Header,Content-Type就往往需要提供。

File-如果对象在磁盘上,这样做有助于降低内存使用。

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

uploadTaskWithRequest:fromFile:

uploadTaskWithRequest:fromFile:completionHandler:

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

Stream

使用这个函数创建

uploadTaskWithStreamedRequest:

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

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

URLSession:task:needNewBodyStream:

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: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];

三 上传图片

核心部分代码

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;

}

你可能感兴趣的:(上传)