(1)POST四种数据提交方式
——Content-Type:application/x-www-form-urlencoded,提交的数据格式就是key1=value1&key2=value2的方式。
NSURL *url=nil; NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:url cachePolicy:0 timeoutInterval:2.0f]; NSString *str=[NSString stringWithFormat:@"username=%@&password=%@",self.name,self.pwd]; [email protected]"POST"; request.HTTPBody=[str dataUsingEncoding:NSUTF8StringEncoding]; [NSURLConnection sendAsynchronousRequest:request queue:[[NSOperationQueue alloc]init] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) { }];
——multipart/form-data,常见的上传二进制文件的方式,但是上传文件大小不能超过2M。提交的数据格式比较复杂,如下(这个数据也是提交给request.HTTPBody):
--随便的非中文字符串 Content-Disposition:form-data;name="";filename="" Content-Type:Mime Type 要上传文件的二进制数据 --随便的非中文字符串 Content-Disposition:form-data;name="submit" Submit --随便的非中文字符串--
——application/JSON,利用JSON序列化的结果赋值给HTTPBody,这里可以上传一个对象,当然这个对象需要经过”对象转字典“的处理,和字典转对象相反
id obj=[person dictionaryWithValuesForKeys:@[@"name",@"pwd"]]; request.HTTPBody=[NSJSONSerialization dataWithJSONObject:obj options:0 error:NULL];
——text/XML,web service技术,比较少用
(2)PUT是上传的另一种方法,但是目前PUT和DELETE在国内网站开发很少用,上传一般都是用POST。
(3)NSURLSession与NSURLConnection并列的。
URLSessionConfigration是设置NSURLSession的。NSURLSession可控制3种任务:DataTask,DownloadTask和UploadTask。这些任务创建后都是”挂起“状态,需要用resume”开启“才能运行。
应用案例:
NSURL *toUrl=nil; NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:toUrl cachePolicy:0 timeoutInterval:2.0f]; [email protected]"PUT"; //设置用户授权 NSString *[email protected]"admin:123456"; NSData *authData=[authStr dataUsingEncoding:NSUTF8StringEncoding]; NSString *result=[authData base64EncodedStringWithOptions:0]; NSString *authString=[NSString stringWithFormat:@"Basic %@",result]; [request setValue:authString forKey:@"Authorization"]; NSURL *fromUrl=nil; NSURLSession *session=[NSURLSession sharedSession]; NSURLSessionUploadTask *task=[session uploadTaskWithRequest:request fromFile:fromUrl completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) { }]; [task resume];
时间: 2024-10-29 08:29:24