如何使用gzip压缩内容发送HTTP POST请求?

时间:2012-05-02 09:05:02

标签: iphone objective-c http gzip http-post

我正在开发iPhone应用并手动构建POST请求。目前,需要在发送之前压缩JSON数据,以便了解如何告知服务器内容是否已压缩。将内容类型标头设置为gzip可能是不可接受的,因为服务器需要JSON数据。我正在寻找透明的解决方案,就像添加一些标题,告诉JSON数据被压缩成gzip。

我知道,标准方法是告诉服务器客户端接受编码,但是您需要首先使用accept编码头发出GET请求。就我而言,我想发布已编码的数据。

2 个答案:

答案 0 :(得分:19)

包含一个Obj-C gzip包装器,例如NSData+GZip,并用它来编码NSURLRequest的主体。另外请记住相应地设置Content-Encoding,以便网络服务器知道如何处理您的请求。

NSData *requestBodyData = [yourData gzippedData];
NSString *postLength = [NSString stringWithFormat:@"%d", requestBodyData.length];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
[request setValue:@"gzip" forHTTPHeaderField:@"Content-Encoding"];
[request setHTTPBody:requestBodyData];

答案 1 :(得分:-2)

实现一些通用方法,如下所示并设置适当的标题可能对您有所帮助。

// constructing connection request for url with no local and remote cache data and timeout seconds
NSMutableURLRequest *request =[NSMutableURLRequest requestWithURL:[NSURL URLWithString:callingWebAddress]];// cachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData timeoutInterval:timoutseconds];
[request setHTTPMethod:@"POST"];

NSMutableDictionary *headerDictionary = [NSMutableDictionary dictionary];
[headerDictionary setObject:@"application/json, text/javascript" forKey:@"Accept"];
[headerDictionary setObject:@"application/json" forKey:@"Content-Type"];

//Edit as @centurion suggested
[headerDictionary setObject:@"Content-Encoding" forKey:@"gzip"];
[headerDictionary setObject:[NSString stringWithFormat:@"POST /Json/%@ HTTP/1.1",method] forKey:@"Request"];
[request setAllHTTPHeaderFields:headerDictionary];

// allocation mem for body data
self.bodyData = [NSMutableData data];

[self appendPostString:[parameter JSONFragment]];

// set post body to request
[request setHTTPBody:bodyData];

NSLog(@"sending data %@",[[[NSString alloc] initWithData:bodyData encoding:NSUTF8StringEncoding]autorelease]);

// create new connection for the request
// schedule this connection to respond to the current run loop with common loop mode.
NSURLConnection *aConnection = [[NSURLConnection alloc] initWithRequest:request delegate:self];
//[aConnection scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:NSRunLoopCommonModes];
self.requestConnenction = aConnection;
[aConnection release];
相关问题