我正在尝试发送一个简单的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。
但是,这个网址确实有效。我可以使用我的浏览器访问它,没有任何问题。 我错过了什么?
答案 0 :(得分:3)
根据NSURL Class Reference,fileURLWithPath:path
仅用于有效的系统路径。对于“Internet”-URL,您应该使用[NSURL urlWithString:urlString];