原文在此
NSURLConnection是苹果提供的原生网络访问类,但是苹果很快会将其废弃,且由NSURLSession(iOS7以后)来替代。目前使用最广泛的第三方网络框架AFNetworking最新版本已弃用了NSURLConnection,那我们学习它还有什么用呢?
NSURL *url = [NSURL URLWithString:@"协议://主机地址/路径?参数&参数"];
解释如下:
NSURLRequest *request = [NSURLRequest requestWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:15.0];
参数解释如下:
另外,还可以设置其它一些信息,比如请求头,请求体等等,如下:
注意,下面的request应为NSMutableURLRequest,即可变类型
// 告诉服务器数据为json类型
[request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
// 设置请求体(json类型)
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:@{@"userid":@"123456"} options:NSJSONWritingPrettyPrinted error:nil];
request.HTTPBody = jsonData;
NSURLConnection默认的请求类型为GET,下面分异步和同步两种介绍
[NSURLConnection sendAsynchronousRequest:request queue:[[NSOperationQueue alloc] init] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
// 有的时候,服务器访问正常,但是会没有数据!
// 以下的 if 是比较标准的错误 处理代码!
if (connectionError != nil || data == nil) {
//给用户的提示信息
NSLog(@"网络不给力");
return;
}
}];
参数说明如下:
注意,block的执行线程为queue,如果block涉及到UI操作,则必须回到主线程:[NSOperationQueue mainQueue]
// 同步请求,代码会阻塞在这里一直等待服务器返回,如果data为nil则请求失败,当获取少量数据时可以使用此方法。
// request参数同上。
NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
服务器返回的NSData数据类型,事先已经知道,因此可以直接返序列化为实际的类型,例如:json(字典或数组)、.plist(字典或数组)、text、xml等:
// 加载本地
NSString *path = [[NSBundle mainBundle] pathForResource:@"文件名 " ofType:nil];
NSData *jsonData = [NSData dataWithContentsOfFile:path];
// 从网络直接加载
NSURL *url = [[NSBundle mainBundle] URLForResource:@"topic_news.json" withExtension:nil];
NSData *data = [NSData dataWithContentsOfURL:url];
这种很少使用,只是苹果自己的格式
// 关于选型参数
// NSPropertyListImmutable = 0,不可变
// NSPropertyListMutableContainers = 1 << 0,容器可变
// NSPropertyListMutableContainersAndLeaves = 1 << 1,容器和叶子可变
// 通常后续直接做字典转模型,不需要关心是否可变,所以一般直接赋值为0
id result = [NSPropertyListSerialization propertyListWithData:data options:0 format:NULL error:NULL];
// 假设json数据位:[{键值对},{键值对}],则可以将数据转化为字典或数组
NSArray *dictArray = [NSJSONSerialization JSONObjectWithData:jsonData options:NSJSONReadingMutableContainers error:nil];
// obj为字典或数组
NSData *data = [NSJSONSerialization dataWithJSONObject:obj options:0 error:NULL];
// 转化前可以判断是否可以序列化:
+ (BOOL)isValidJSONObject:(id)obj;
下面举一个实现断点续传的网络下载,要实现断点续传,还需要用到NSURLConnectionDataDelegate代理,NSFileHandle文件操作或者数据流的形式(NSOutputStream),这里以NSFileHandle为例,具体见代码:
@interface ViewController () <NSURLConnectionDataDelegate>
/// 文件下载完毕之后,在本地保存的路径
@property (nonatomic, copy) NSString *filePath;
/// 需要下载的文件的总大小!
@property (nonatomic, assign) long long serverFileLength;
/// 当前已经下载长度
@property (nonatomic, assign) long long localFileLength;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
}
/// 点击屏幕事件
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {
[self downloadFile];
}
/// 下载文件
- (void)downloadFile {
// 文件存储路径
self.filePath = @"/Users/username/Desktop//陶喆 - 爱很简单.mp3";
// 要下载的网络文件,采用Apache搭建的本地服务器
NSString *urlStr = @"http://localhost/陶喆 - 爱很简单.mp3";
urlStr = [urlStr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSURL *url = [NSURL URLWithString:urlStr];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
// 设置请求方法为 HEAD 方法,这里只是头,数据量少,用同步请求也可以,不过最好还是用异步请求
request.HTTPMethod = @"HEAD";
// 无论是否会引起循环引用,block里面都使用弱引用
__weak typeof(self) weakSelf = self;
[NSURLConnection sendAsynchronousRequest:request queue:[[NSOperationQueue alloc] init] completionHandler:^(NSURLResponse * _Nullable response, NSData * _Nullable data, NSError * _Nullable connectionError) {
// 出错则返回
if (connectionError != nil) {
NSLog(@"connectionError = %@",connectionError);
return ;
}
// 记录需要下载的文件总长度
long long serverFileLength = response.expectedContentLength;
weakSelf.serverFileLength = serverFileLength;
// 初始化已下载文件大小
weakSelf.localFileLength = 0;
NSDictionary *dict = [[NSFileManager defaultManager] attributesOfItemAtPath:weakSelf.filePath error:NULL];
long long localFileLength = [dict[NSFileSize] longLongValue];
// 如果没有本地文件,直接下载!
if (!localFileLength) {
// 下载新文件
[weakSelf getFileWithUrlString:urlStr];
}
// 如果已下载的大小,大于服务器文件大小,肯定出错了,删除文件并从新下载
if (localFileLength > serverFileLength) {
// 删除文件 remove
[[NSFileManager defaultManager] removeItemAtPath:self.filePath error:NULL];
// 下载新文件
[self getFileWithUrlString:urlStr];
} else if (localFileLength == serverFileLength) {
NSLog(@"文件已经下载完毕");
} else if (localFileLength && localFileLength < serverFileLength) {
// 文件下载了一半,则使用断点续传
self.localFileLength = localFileLength;
[self getFileWithUrlString:urlStr WithStartSize:localFileLength endSize:serverFileLength-1];
}
}];
}
/// 重新开始下载文件(代理方法监听下载过程)
-(void)getFileWithUrlString:(NSString *)urlString
{
NSURL *url = [NSURL URLWithString:urlString];
// 默认就是 GET 请求
NSURLRequest *request = [NSURLRequest requestWithURL:url];
// 开始请求,并设置代理为self
NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:request delegate:self];
// 设置代理的执行线程,一般不在主线程
[conn setDelegateQueue:[[NSOperationQueue alloc] init]];
// NSUrlConnection 的代理方法是一个特殊的事件源!
// 开启运行循环!
CFRunLoopRun();
}
/* 断点续传(代理方法监听下载过程)
* startSize:本次断点续传开始的位置
* endSize:本地断点续传结束的位置
*/
-(void)getFileWithUrlString:(NSString *)urlString WithStartSize:(long long)startSize endSize:(long long)endSize
{
// 1. 创建请求!
NSURL *url = [NSURL URLWithString:urlString];
// 默认就是 GET 请求
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
// 设置断点续传信息
NSString *range = [NSString stringWithFormat:@"Bytes=%lld-%lld",startSize,endSize];
[request setValue:range forHTTPHeaderField:@"Range"];
// NSUrlConnection 下载过程!
NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:request delegate:self];
// 设置代理的执行线程// 传一个非主队列!
[conn setDelegateQueue:[[NSOperationQueue alloc] init]];
// NSUrlConnection 的代理方法是一个特殊的事件源!
// 开启运行循环!
CFRunLoopRun();
}
#pragma mark - NSURLConnectionDataDelegate
/// 1. 接收到服务器响应
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
// 服务器响应
// response.expectedContentLength的大小是要下载文件的大小,而不是文件的总大小。比如请求头设置了Range[requestM setValue:rangeStr forHTTPHeaderField:@"Range"];则返回的大小为range范围内的大小
}
/// 2. 接收到数据
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
//data当前接收到的网络数据;
// 如果这个文件不存在,响应的文件句柄就不会创建!
NSFileHandle *fileHandle = [NSFileHandle fileHandleForWritingAtPath:self.filePath];
// 在这个路径下已经有文件了!
if (fileHandle) {
// 将文件句柄移动到文件的末尾
[fileHandle seekToEndOfFile];
// 写入文件的意思(会将data写入到文件句柄所操纵的文件!)
[fileHandle writeData:data];
[fileHandle closeFile];
} else {
// 第一次调用这个方法的时候,在本地还没有文件路径(没有这个文件)!
[data writeToFile:self.filePath atomically:YES];
}
}
/// 3. 接收完成
- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
NSLog(@"下载完成");
}
/// 4. 网络错误
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
NSLog(@"下载错误 %@", error);
}
@end