博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
网络篇----下载大文件
阅读量:5238 次
发布时间:2019-06-14

本文共 3126 字,大约阅读时间需要 10 分钟。

#import "HMViewController.h"@interface HMViewController () 
/** * 用来写数据的文件句柄对象 */@property (nonatomic, strong) NSFileHandle *writeHandle;/** * 文件的总大小 */@property (nonatomic, assign) long long totalLength;/** * 当前已经写入的文件大小 */@property (nonatomic, assign) long long currentLength;@property (nonatomic, weak) DACircularProgressView *circleView;@end@implementation HMViewController- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib.}- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ // 1.URL NSURL *url = [NSURL URLWithString:@"http://localhost:8080/MJServer/resources/music.zip"]; // 2.请求 NSURLRequest *request = [NSURLRequest requestWithURL:url]; // 3.下载(创建完conn对象后,会自动发起一个异步请求) [NSURLConnection connectionWithRequest:request delegate:self];}#pragma mark - NSURLConnectionDataDelegate代理方法/** * 请求失败时调用(请求超时、网络异常) * * @param error 错误原因 */- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error{ NSLog(@"didFailWithError");}/** * 1.接收到服务器的响应就会调用 * * @param response 响应的时候调用 */- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response{ // 文件路径 写到沙盒cache文件夹中 NSString *caches = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject]; NSString *filepath = [caches stringByAppendingPathComponent:@"videos.zip"]; // 创建一个空的文件 到 沙盒中 NSFileManager *mgr = [NSFileManager defaultManager]; [mgr createFileAtPath:filepath contents:nil attributes:nil]; // 创建一个用来写数据的文件句柄 self.writeHandle = [NSFileHandle fileHandleForWritingAtPath:filepath]; // 获得文件的总大小 response.expectedContentLength 是在响应头里面获取文件的总大小 self.totalLength = response.expectedContentLength;}/** * 2.当接收到服务器返回的实体数据时调用(具体内容,这个方法可能会被调用多次) * * @param data 这次返回的数据 */- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data{ // 移动到文件的最后面 [self.writeHandle seekToEndOfFile]; // 将数据写入沙盒 [self.writeHandle writeData:data]; // 累计文件的长度 self.currentLength += data.length; NSLog(@"下载进度:%f", (double)self.currentLength/ self.totalLength); self.circleView.progress = (double)self.currentLength/ self.totalLength;}/** * 3.加载完毕后调用(服务器的数据已经完全返回后) */- (void)connectionDidFinishLoading:(NSURLConnection *)connection{ self.currentLength = 0; self.totalLength = 0; // 关闭文件 [self.writeHandle closeFile]; self.writeHandle = nil;}

 二、NSRULConnection 发送异步请求的方法

1、block方法 除了下载文件使用这个方法

NSURLConnection sendAsynchronousRequest:<#(NSURLRequest *)#> queue:<#(NSOperationQueue *)#> completionHandler:<#^(NSURLResponse *response, NSData *data, NSError *connectionError)handler#>

2、代理方法  一般用在大文件下载文件的时候使用这个方法

// 1.URL    NSURL *url = [NSURL URLWithString:@"http://localhost:8080/MJServer/resources/music.zip"];        // 2.请求    NSURLRequest *request = [NSURLRequest requestWithURL:url];        // 3.下载(创建完conn对象后,会自动发起一个异步请求)    [NSURLConnection connectionWithRequest:request delegate:self];

 

转载于:https://www.cnblogs.com/lizhan1991/p/4727682.html

你可能感兴趣的文章
03 线程池
查看>>
手机验证码执行流程
查看>>
设计模式课程 设计模式精讲 2-2 UML类图讲解
查看>>
Silverlight 的菜单控件。(不是 Toolkit的)
查看>>
初识lua
查看>>
jquery的contains方法
查看>>
linux后台运行和关闭SSH运行,查看后台任务
查看>>
CAN总线波形中ACK位电平为什么会偏高?
查看>>
MyBatis课程2
查看>>
桥接模式-Bridge(Java实现)
查看>>
Spring的JdbcTemplate、NamedParameterJdbcTemplate、SimpleJdbcTemplate
查看>>
Mac下使用crontab来实现定时任务
查看>>
303. Range Sum Query - Immutable
查看>>
图片加载失败显示默认图片占位符
查看>>
【★】浅谈计算机与随机数
查看>>
解决 sublime text3 运行python文件无法input的问题
查看>>
javascript面相对象编程,封装与继承
查看>>
Atlas命名空间Sys.Data下控件介绍——DataColumn,DataRow和DataTable
查看>>
算法之搜索篇
查看>>
新的开始
查看>>