我遇到了从服务器下载图片的问题。我正在尝试使用以下网址下载图片:
[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
问题。
我不知道如何纠正这个问题。有什么想法吗?
答案 0 :(得分:0)
必须正确编码网址。
字符“/”是保留的字符。此保留字符的含义是将路径组件与URL分开。如果字符“/”是路径的 part ,则必须对其进行编码。
在这种特殊情况下,字符“/”是URL的一部分,这个字符需要用三个字符的序列表示:“%2F”。
其他特殊字符需要不同的编码。此URL编码也称为“Percent-Encoding”。
另见: