在iOS開發(fā)中使用POST請求上傳文件分為三步:
1.設(shè)置請求行
NSURL *url=[NSURL URLWithString:[NSString stringWithFormat:@"<#urlString#>"]];
2.設(shè)置post請求
post請求抽出到NSMutableURLRequest+PostFile.h
這個(gè)類中
另外在iOS開發(fā)中對于圖片或者文件的上傳拴竹,Xcode并沒有進(jìn)行封裝蚂踊,所以需要自己手動(dòng)的在代碼中拼接請求體肛响,請求體的格式如下:
請求體格式:
\r\n--Boundary+72D4CD655314C423\r\n // 分割符耕蝉,以“--”開頭,后面的字隨便寫朋蔫,只要不寫中文即可
Content-Disposition: form-data; name="uploadFile"; filename="001.png"\r\n // 這里注明服務(wù)器接收圖片的參數(shù)(類似于接收用戶名的userName)及服務(wù)器上保存圖片的文件名
Content-Type:image/png \r\n // 圖片類型為png
Content-Transfer-Encoding: binary\r\n\r\n // 編碼方式
// 這里是空一行靡挥,必不可少!树瞭!
... contents of boris.png ... // 圖片數(shù)據(jù)部分
\r\n--Boundary+72D4CD655314C423--\r\n // 分隔符后面以"--"結(jié)尾,表明結(jié)束
其中“\r\n” 表示換行爱谁。
NSMutableURLRequest+PostFile.m文件中實(shí)現(xiàn)封裝的具體代碼如下:
#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";//設(shè)置請求方法是POST
request.timeoutInterval=15.0;//設(shè)置請求超時(shí)
//拼接請求體數(shù)據(jù)(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 // 這里注明服務(wù)器接收圖片的參數(shù)(類似于接收用戶名的userName)及服務(wù)器上保存圖片的文件名
[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"];
//轉(zhuǎn)換成為二進(jìn)制數(shù)據(jù)
[requestMutableData appendData:[myString dataUsingEncoding:NSUTF8StringEncoding]];
//5.文件數(shù)據(jù)部分
NSURL *filePathUrl=[NSURL URLWithString:localFilePath];
//轉(zhuǎn)換成為二進(jìn)制數(shù)據(jù)
[requestMutableData appendData:[NSData dataWithContentsOfURL:filePathUrl]];
//6. \r\n--Boundary+72D4CD655314C423--\r\n // 分隔符后面以"--"結(jié)尾凉敲,表明結(jié)束
[requestMutableData appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
/*--------------------------------------------------------------------------*/
//設(shè)置請求體
request.HTTPBody=requestMutableData;
//設(shè)置請求頭
NSString *headStr=[NSString stringWithFormat:@"Content-Type multipart/form-data; boundary=%@",boundary];
[request setValue:headStr forHTTPHeaderField:@"Content-Type"];
return request;
}
在NSMutableURLRequest+PostFile.m中,拼接完請求體數(shù)據(jù)之后(分割線之間的部分),還需要個(gè)post請求設(shè)置一個(gè)請求頭荡陷。請求頭跟請求體一樣雨效,也有自己固定的格式。
其中setValue: forHTTPHeaderField:
方法是用來設(shè)置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.設(shè)置連接方式
在Xcode 7.1以后推薦使用NSURLSession,來替代NSURLConection
/* *****替代NSURLConection的NSURLSesstion方法*****
Xcode中已經(jīng)不推薦使用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中調(diào)用的方法如下:
#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];//調(diào)用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