在iOS开发中使用POST请求上传文件分为三步:
1.设置请求行
NSURL *url=[NSURL URLWithString:[NSString stringWithFormat:@"<#urlString#>"]];
2.设置post请求
post请求抽出到NSMutableURLRequest+PostFile.h
这个类中
另外在iOS开发中对于图片或者文件的上传,Xcode并没有进行封装,所以需要自己手动的在代码中拼接请求体,请求体的格式如下:
请求体格式:
\r\n--Boundary+72D4CD655314C423\r\n // 分割符,以“--”开头,后面的字随便写,只要不写中文即可
Content-Disposition: form-data; name="uploadFile"; filename="001.png"\r\n // 这里注明服务器接收图片的参数(类似于接收用户名的userName)及服务器上保存图片的文件名
Content-Type:image/png \r\n // 图片类型为png
Content-Transfer-Encoding: binary\r\n\r\n // 编码方式
// 这里是空一行,必不可少!!
... contents of boris.png ... // 图片数据部分
\r\n--Boundary+72D4CD655314C423--\r\n // 分隔符后面以"--"结尾,表明结束
其中“\r\n” 表示换行。
NSMutableURLRequest+PostFile.m文件中实现封装的具体代码如下:
#import "NSMutableURLRequest+PostFile.h"
@implementation NSMutableURLRequest (PostFile)
static NSString *boundary=@"AlvinLeonPostRequest";
+(instancetype)requestWithURL:(NSURL *)url andFilenName:(NSString *)fileName andLocalFilePath:(NSString *)localFilePath{
//post请求
NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:url cachePolicy:1 timeoutInterval:2.0f];
request.HTTPMethod=@"POST";//设置请求方法是POST
request.timeoutInterval=15.0;//设置请求超时
//拼接请求体数据(1-6步)
NSMutableData *requestMutableData=[NSMutableData data];
/*--------------------------------------------------------------------------*/
//1.\r\n--Boundary+72D4CD655314C423\r\n // 分割符,以“--”开头,后面的字随便写,只要不写中文即可
NSMutableString *myString=[NSMutableString stringWithFormat:@"\r\n--%@\r\n",boundary];
//2. Content-Disposition: form-data; name="uploadFile"; filename="001.png"\r\n // 这里注明服务器接收图片的参数(类似于接收用户名的userName)及服务器上保存图片的文件名
[myString appendString:[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"uploadFile\"; filename=\"%@\"\r\n",fileName]];
//3. Content-Type:image/png \r\n // 图片类型为png
[myString appendString:[NSString stringWithFormat:@"Content-Type:application/octet-stream\r\n"]];
//4. Content-Transfer-Encoding: binary\r\n\r\n // 编码方式
[myString appendString:@"Content-Transfer-Encoding: binary\r\n\r\n"];
//转换成为二进制数据
[requestMutableData appendData:[myString dataUsingEncoding:NSUTF8StringEncoding]];
//5.文件数据部分
NSURL *filePathUrl=[NSURL URLWithString:localFilePath];
//转换成为二进制数据
[requestMutableData appendData:[NSData dataWithContentsOfURL:filePathUrl]];
//6. \r\n--Boundary+72D4CD655314C423--\r\n // 分隔符后面以"--"结尾,表明结束
[requestMutableData appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
/*--------------------------------------------------------------------------*/
//设置请求体
request.HTTPBody=requestMutableData;
//设置请求头
NSString *headStr=[NSString stringWithFormat:@"Content-Type multipart/form-data; boundary=%@",boundary];
[request setValue:headStr forHTTPHeaderField:@"Content-Type"];
return request;
}
在NSMutableURLRequest+PostFile.m中,拼接完请求体数据之后(分割线之间的部分),还需要个post请求设置一个请求头。请求头跟请求体一样,也有自己固定的格式。
其中setValue: forHTTPHeaderField:
方法是用来设置request的请求头,其返回值是void
。
具体的格式如下:
/* *****请求头格式*****
Content-Length(文件大小)
Content-Type multipart/form-data; boundary(分隔符)=(可以随便写但不能有中文)
*/
NSString *headStr=[NSString stringWithFormat:@"Content-Type multipart/form-data; boundary=%@",boundary];
[request setValue:headStr forHTTPHeaderField:@"Content-Type"];
3.设置连接方式
在Xcode 7.1以后推荐使用NSURLSession,来替代NSURLConection
/* *****替代NSURLConection的NSURLSesstion方法*****
Xcode中已经不推荐使用NSURLConection,开始用NSURLSesstion来替代。
+ (void)sendAsynchronousRequest:(NSURLRequest*) request
queue:(NSOperationQueue*) queue
completionHandler:(void (^)(NSURLResponse* __nullable response, NSData* __nullable data, NSError* __nullable connectionError)) handler NS_DEPRECATED(10_7, 10_11, 5_0, 9_0, "Use [NSURLSession dataTaskWithRequest:completionHandler:] (see NSURLSession.h");
*/
NSURLSession *session=[NSURLSession sharedSession];
NSURLSessionDataTask *dataTask=[session dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
id result=[NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
NSLog(@"post==%@",result);
}];
[dataTask resume];
ViewController中调用的方法如下:
#import "ViewController.h"
#import "NSMutableURLRequest+PostFile.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
self.view.backgroundColor=[UIColor whiteColor];
[self PostFile];//调用POST请求
}
-(void)PostFile{
//用post上传文件
//url
NSURL *url=[NSURL URLWithString:[NSString stringWithFormat:@"<#urlString#>"]];
//post请求
NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:url andFilenName:@"Alvin.data" andLocalFilePath:[[NSBundle mainBundle]pathForResource:@"Alvin.png" ofType:nil]];
//连接(NSURLSession)
NSURLSession *session=[NSURLSession sharedSession];
NSURLSessionDataTask *dataTask=[session dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
id result=[NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
NSLog(@"post==%@",result);
}];
[dataTask resume];
}
@end