用NSFileHandle实现文件的断点续传

来源:互联网 发布:seo教程ppt 编辑:程序博客网 时间:2024/06/08 02:23
断点续传:复制或者下载一个文件到某一个位置停止,下次接着原来的部分下载//复制一个文件中的指定的内容到另外一个文件中void copyFileContentToAnotherFileUnderControl(){    NSString *homePath = NSHomeDirectory();    NSString *srcPath = [homePath stringByAppendingPathComponent:@"src.txt"];    NSString *descPath = [homePath stringByAppendingPathComponent:@"desc.txt"];    NSString *srcContent = @"abcdefg hijklmn opq rst uvw xyz a!";    NSData *srcData = [srcContent dataUsingEncoding:NSUTF8StringEncoding];    //创建文件管理器    NSFileManager *fileManager = [NSFileManager defaultManager];    //创建原文件以及添加文件中的内容    BOOL srcSuccess = [fileManager createFileAtPath:srcPath contents:srcData attributes:nil];    if (srcSuccess) {        NSLog(@"Source File Create Success!");    } else {        NSLog(@"Source File Create Failure!");    }    //创建目标文件    BOOL success = [fileManager createFileAtPath:descPath contents:nil attributes:nil];    if (success) {        NSLog(@"Desert File Create Success!");    } else {        NSLog(@"Desert File Create Failure!");    }    //打开原文件和目标文件    NSFileHandle *srcHandle = [NSFileHandle fileHandleForReadingAtPath:srcPath];    NSFileHandle *descHandle = [NSFileHandle fileHandleForUpdatingAtPath:descPath];    //获取全部内容的长度    //NSUInteger length = [srcHandle availableData].length;    //读取并且传递指定长度的内容    NSData *content = [srcHandle readDataOfLength:5];    [descHandle writeData:content];    [srcHandle closeFile];    [descHandle closeFile];}//实现断点续传/** 原理: 1、比较目标文件和原文件的大小,如果目标文件比原文件小,则需要继续复制文件中的内容 2、读取原文件中剩余的内容,传入复制到目标文件的最后 */int main(int argc, const char * argv[]) {    @autoreleasepool {        NSString *homePath = NSHomeDirectory();        NSString *srcPath = [homePath stringByAppendingPathComponent:@"src.txt"];        NSString *descPath = [homePath stringByAppendingPathComponent:@"desc.txt"];        //打开原文件和目标文件        NSFileHandle *srcHandle = nil;        NSFileHandle *descHandle = nil;        srcHandle = [NSFileHandle fileHandleForReadingAtPath:srcPath];        descHandle = [NSFileHandle fileHandleForReadingAtPath:descPath];        if (descHandle) {//如果有目标文件,则复制剩下的内容            NSLog(@"---目标文件已经生成过---");            //获取原文件内容的长度            NSUInteger srcLength = [srcHandle availableData].length;            //获取目标文件内容的长度            NSUInteger descLength = [descHandle availableData].length;            if (descLength < srcLength) {//如果目标文件比原文件内容少,则说明还没有复制完成,继续进行复制操作                //由打开供读取变成打开供更新                descHandle = [NSFileHandle fileHandleForUpdatingAtPath:descPath];                //设置要读取的偏移量为目标文件的长度,就是要从什么位置开始读取                [srcHandle seekToFileOffset:descLength];                //读取文件的内容(因为前面设置好了偏移量,因此这里读取数据的内容为偏移量之后到末尾的内容)                NSData *remainContent = [srcHandle readDataToEndOfFile];                //偏移量设置为目标文件的最后,要不然会覆盖原来的内容                [descHandle seekToEndOfFile];                //写数据                [descHandle writeData:remainContent];            }        } else {//如果没有目标文件,则创建目标文件,并且复制指定的内容到里面去            NSLog(@"===还没有生成目标文件===");            //调用复制部分内容的方法            copyFileContentToAnotherFileUnderControl();        }        [srcHandle closeFile];        [descHandle closeFile];    }    return 0;}

这个断点续传是鄙人的个人理解,如果有不正确的地方请网友帮忙指出,谢谢!

1 0
原创粉丝点击