-1

我从服务器下载图像时遇到问题。我正在尝试使用以下 URL 下载图像:

[HOST]/<path to the image>/3cadda28-a334-400b-9d96-8f6dda938dec/

如您所见,图像以斜线结尾。尝试通过执行此代码下载此图像时:

NSURL *imageUrl = [[NSURL alloc] initWithString:@"[HOST]/<path to the image>/3cadda28-a334-400b-9d96-8f6dda938dec/"];
NSURLRequest *urlRequest = [[NSURLRequest alloc] initWithURL:imageUrl cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:BkRemoteImageViewDefaultTimeoutInteval];
[[NSURLConnection alloc] initWithRequest:urlRequest delegate:self];

连接失败并启动协议方法:

- (void)connection:(NSURLConnection *)aConnection didFailWithError:(NSError *)error

带有错误代码404。我的假设是加载的 URL 是:

[HOST]/<path to the image>/3cadda28-a334-400b-9d96-8f6dda938dec

(没有最后一个“斜线”)而不是

[HOST]/<path to the image>/3cadda28-a334-400b-9d96-8f6dda938dec/

没有最后一个斜杠的路径不是有效对象,因此是404问题所在。

我不知道如何纠正这个。任何想法?

4

1 回答 1

0

URL 必须正确编码。

字符“/”是保留字符。此保留字符的含义是将路径组件与 URL 分开。如果字符“/”是路径的一部分,则必须对其进行编码。

在这种特殊情况下,如果字符“/”是 URL 的一部分,则该字符需要用三个字符的序列表示:“%2F”。

其他特殊字符需要不同的编码。此 URL 编码也称为“百分比编码”。

也可以看看:

wiki 百分比编码, 网络学校, RFC 1738

于 2013-07-05T11:33:58.517 回答