-(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
if(data != nil){
//open output stream
NSOutputStream *stream=[[NSOutputStream alloc] initToFileAtPath:_filePath append:YES];
[stream open];
NSString *str=(NSString *)data;
//write to file
NSUInteger left = [str length];
NSUInteger bytesWritten = 0;
do {
bytesWritten = [stream write:[data bytes] maxLength:left];
downloadedData = downloadedData + bytesWritten;
if (-1 == bytesWritten) break;
left -= bytesWritten;
} while (left > 0);
if (left) {
NSLog(@"stream error: %@", [stream streamError]);
[self handleForCurreptedDownloading];
}
[stream close];
}
else{
NSLog(@"data nil");
}
}
尝试使用此代码,但没有工作,因为它提供相同的内存警告
downloadedData += [data length];
NSFileHandle *fileHandle = [NSFileHandle fileHandleForUpdatingAtPath:_filePath];
[fileHandle seekToEndOfFile];
[fileHandle writeData:data];
[fileHandle closeFile];
这是我用fileSystem的代码,我直接写入并附加到文件中。我也用过ARC。当我尝试下载大型视频文件时,它仍然会发出内存警告并崩溃。
我在下载磁盘空间之前已经检查了
+ (NSNumber *)getFreeSpace
{
// float freeSpace = 0.0f;
NSError *error = nil;
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
NSDictionary *dictionary = [[NSFileManager defaultManager] attributesOfFileSystemForPath:[paths lastObject] error: &error];
NSNumber *fileSystemFreeSizeInBytes = 0;
if (dictionary) {
fileSystemFreeSizeInBytes = [dictionary objectForKey: NSFileSystemFreeSize];
// freeSpace = [fileSystemFreeSizeInBytes floatValue];
} else {
//Handle error
}
return fileSystemFreeSizeInBytes;
}
我已经检查了分配,它给了我稳定的图表。 有没有其他方法可以下载和管理大型视频文件?
答案 0 :(得分:1)
您将在didReceiveData函数中获取完整的下载文件数据 - 这可能是巨大的。
我会使用像AFNetworking这样的框架来满足您的下载需求,它会让事情变得更加简单。
例如,要下载大文件而不立即获取整个数据然后将其写入文件,请使用NSOutputStream在下载文件时写入部分文件。
这来自AFNetworking文档:
operation.outputStream = [NSOutputStream outputStreamToFileAtPath:@"download.zip" append:NO];