如何确定nsurclconnection的编码是否为gzip¬ ed

时间:2014-06-21 01:32:56

标签: ios http gzip nsurlconnection

有没有办法弄清楚你的nsurlconnection现在是否真的是gzip而不是典型的,因为我想比较时间上的差异。谢谢,

1 个答案:

答案 0 :(得分:2)

NSURLConnectionDataDelegate方法-connection:didReveiveResponse:中,您可以查看Content-Encoding的标题字段,如:

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
    NSLog(@"%@", (NSHTTPURLResponse *)response allHeaderFields]);
}