当URL实际存在时,NSURLConnection命中didFailWithError

时间:2012-02-18 23:57:32

标签: ios ios5 nsurlconnection nsurlrequest

我正在尝试发送一个简单的NSURLConnection请求:

- (void) sendHTTPRequest:(NSString*)urlString
{
NSLog(@"SendHTTPRequest: %@", urlString);

@try
{
    NSURL *fileURL = [NSURL fileURLWithPath:urlString];

    // Create the request.        
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:fileURL            cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:60.0];

    NSURLConnection *connection = [[NSURLConnection alloc]initWithRequest:request delegate:self];
    if (connection) {
        receivedData = [NSMutableData data];
    }
    else {
        // Inform the user that the connection failed.
    }
}
@catch (NSException *e)
{
    NSLog(@"Exception: %@", e);
}
}

它回电话:      - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error

错误:连接失败!错误 - 在此服务器上找不到请求的URL。

但是,这个网址确实有效。我可以使用我的浏览器访问它,没有任何问题。 我错过了什么?

1 个答案:

答案 0 :(得分:3)

根据NSURL Class ReferencefileURLWithPath:path仅用于有效的系统路径。对于“Internet”-URL,您应该使用[NSURL urlWithString:urlString];