0

我正在使用NSBlockOperation其中我试图从服务器下载音频文件并将其存储在文档目录中。

NSBlockOperation *audioOperation = [NSBlockOperation blockOperationWithBlock:^{
//Perform doanload
 NSString *itemStoredPath = [self downloadPOIAudioByUrl:itemUrl itemName:itemName folderName:itemFolder iteInfo:cacheAudioDetails];

// Update database
.....
}];


-(NSString *)downloadPOIAudioByUrl:(NSString *)itemUrl itemName:(NSString *)itemName folderName:(NSString *)folderName iteInfo:(CacheAudioDetails *)itemInfo {
    // Get the url for video upload
    NSURL *audioUrl = [NSURL URLWithString:[itemUrl stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
    // Set the response parameter
    NSURLResponse *serverResponce = nil;
    // Set the error parameter
    NSError *error = nil;
    // Create a request & set the time out interval for 1 min.
    //NSURLRequest *videoRequest = [NSURLRequest requestWithURL:videoUrl cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:60.0];
    NSURLRequest *audioRequest = [NSURLRequest requestWithURL:audioUrl];
    // Set the connection
    NSData *audioData = [NSURLConnection sendSynchronousRequest:audioRequest returningResponse:&serverResponce error:&error];
    if (error == nil && audioData != nil) {
      // Data Found
      // Store in directory & return the path to store in database
      return audioPath;
    }
 return nil;
}

我进行了同步调用以下载音频文件。但是它花费了太多时间,并且在很长一段时间后它返回零字节的 NSData。我认为这是由于我的请求超时 60 秒。然后我删除了超时请求,但问题仍然存在。我的查询是

  1. 超时与服务器连接有关,与从服务器获取数据无关
  2. 服务器的零字节响应应该是什么原因。
4

0 回答 0