内容长度未读取

时间:2012-01-16 20:38:05

标签: iphone xcode curl content-length

在下载图像之前尝试获取图像大小时遇到​​问题。

我正在尝试从Xcode中的远程服务器读取图像文件的标题。示例图片的链接位于:http://www.iseivijosdaile.lt/iPadWS/images/thumbnail_1195165011LIDF-0130.png

终端命令

curl --head http://www.iseivijosdaile.lt/iPadWS/images/thumbnail_1195165011LIDF-0130.png

返回Content-Length:125803

以下

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
    NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse*)response;
    if ([response respondsToSelector:@selector(allHeaderFields)]) {
        NSDictionary *dictionary = [httpResponse allHeaderFields];
        NSLog([dictionary description]);
    }
}

不包含字段Content-Length。

为什么会发生这种情况,我该如何解决?

谢谢!

1 个答案:

答案 0 :(得分:4)

因为NSURLResponse *的Content-Length没有与其余的标题字段一起存储,而是存储在它自己的字段中:

[httpResponse expectedContentLength];