gpt4 book ai didi

ios - 在 ios 中下载 gzip 图像

转载 作者:行者123 更新时间:2023-11-29 13:01:16 24 4
gpt4 key购买 nike

我正在 iOS 中下载以下格式的图像:

    "Content-Encoding" = gzip;
"Content-Type" = "text/html";
Date = "Thu, 31 Oct 2013 19:08:58 GMT";
Expires = "Thu, 01 Jan 1970 00:00:00 GMT";
"Set-Cookie" = "JSESSIONID=1mrh644zbpgutn1xk116n825u;Path=/";
"Transfer-Encoding" = Identity;

我正在尝试使用这个:https://github.com/st3fan/cocoa-utils/blob/master/src/NSDataGZipAdditions.m执行取消存档...但它似乎不起作用。

这是我当前无法运行的代码:

NSString *authHeader = [NSString stringWithFormat:@"OAuth %@", credentials.accessToken];
NSMutableURLRequest* request = [[NSMutableURLRequest alloc] initWithURL:myURL];
[request addValue:authHeader forHTTPHeaderField:@"Authorization"];

[NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue new] completionHandler:^(NSURLResponse *response, NSData *data, NSError *err) {
NSLog(@"Response: %@", response);
if (err) {
NSLog(@"Error: %@", err);
}
//here create file from _data_

NSData *mydata = [NSData dataWithCompressedData:data];
self.propImg1.image = [UIImage imageWithData:mydata];
[self.propImg1 setNeedsLayout];

有谁知道如何做到这一点?

谢谢

最佳答案

  1. 我建议检查响应的 statusCode 并确保它是 200

  2. 你说你的服务器报告了一个 Content-Encoding

    "Content-Encoding" = gzip;

    这并不意味着您的 NSData 是 gzip 数据。我相信某些 Web 服务器可以透明地 gzip 其响应,而 iOS 会透明地为您解压缩。对于大多数 Web 服务器请求,您通常不必使用 gzip 库来解压缩。

    您的 Content-Type 证明了这一点会暗示响应不是图像:

    "Content-Type" = "text/html";

    不可否认,我们应该犹豫是否从 Content-Type 中得出太多结论(因为一些自定义 Web 服务在设置它方面草率),但这与您断言结果 NSData 是 gzip 数据。

    您在下面添加了一条评论,向我们展示了 NSData,实际上是一个字符串脚本。看起来它可能是 HTML,而不是图像。

  3. 我将 NSLog data(或在此 block 内设置断点并在调试器中发出 po data 命令) 看看它长什么样,并消除这里的歧义。如果它主要是 207f 之间的十六进制值(加上偶尔的 0a 甚至可能是 0d),那建议响应是一个字符串,然后您可以将其记录为字符串。

    也许您可以使用 data 十六进制转储的前几行更新您的问题,我们可以帮助您诊断发生了什么(因为您通常可以查看前几个字节并确认是否它是文本、gzip 或图像)。

    或者,既然你已经确认它是一个字符串响应(看起来它可能是 HTML),你应该将它转换为 NSString 并记录它,你会看到发生了什么上。

  4. 顺便说一下,当您解决请求问题时,由于您在完成 block 中进行 UI 更新,请使用 [NSOperationQueue mainQueue] 作为完成 block ,或者确保将 UI 更新分派(dispatch)回主队列(正如我在下面的示例中所做的那样)。

因此:

[NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue new] completionHandler:^(NSURLResponse *response, NSData *data, NSError *err) {
NSLog(@"Response: %@", response);
if (err) {
NSLog(@"Error: %@", err);
}

NSInteger statusCode = -1;
if ([response isKindOfClass:[NSHTTPURLResponse class]])
{
NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)response;
statusCode = httpResponse.statusCode;
}

NSLog(@"statusCode = %d", statusCode); // this should be 200
NSLog(@"data = %@", data); // if really text, you'll largely see values b/w 20 and 7f and the occasional 0a

// if it does look like largely 20-7f and a few 0a values, then try displaying it as a string:
//
// NSLog(@"data string = %@", [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];

//here create file from _data_

NSData *mydata = [NSData dataWithCompressedData:data];
if (mydata) {
UIImage *image = [UIImage imageWithData:mydata];
if (image) {
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
self.propImg1.image = image;
[self.propImg1 setNeedsLayout];
}];
}
}

// ...
}];

关于ios - 在 ios 中下载 gzip 图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19714817/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com