网络01
2016-03-27 本文已影响17人
木子尚武
网络基础
- Http:
- 苹果原生:
- NSURLConnection 03年推出的古老技术
- NSURLSession 14年推出,为了代替NSURLConnection
- CFNetwork c语言的,底层的
- 第三方框架:
- AFNetworking
- NSURLConnection基本使用:
- NSURLConnection同步请求(GET)
- 发送网络请求的步骤
- 确定url
- 创建请求
- 发送NSURLSession sendsync同步请求
- 服务器得到消息后解析内容
- 相关代码:
//1.确定请求路径 NSURL *url = [NSURL URLWithString:@"http://120.25.226.186:32812/login?username=520it&pwd=520it&type=XML"]; //NSURL *url = [NSURL URLWithString:@"http://120.25.226.186:32812/video?type=XML"]; //2.创建一个请求对象 NSURLRequest *request = [NSURLRequest requestWithURL:url]; //3.把请求发送给服务器 //sendSynchronousRequest 阻塞式的方法,会卡住线程 NSHTTPURLResponse *response = nil; NSError *error = nil; /* 第一个参数:请求对象 第二个参数:响应头信息,当该方法执行完毕之后,该参数被赋值 第三个参数:错误信息,如果请求失败,则error有值 */ //该方法是阻塞式的,会卡住线程 NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error]; //4.解析服务器返回的数据 NSString *str = [[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding];
- NSURLConnection异步请求(GET-SendAsync)
- 相关说明:该请求是异步的,不会卡在当前线程
- 相关代码:
//1.确定请求路径 NSURL *url = [NSURL URLWithString:@"http://120.25.226.186:32812/login?username=520it&pwd=520it"]; //2.创建一个请求对象 NSURLRequest *request = [NSURLRequest requestWithURL:url]; //3.把请求发送给服务器,发送一个异步请求 /* 第一个参数:请求对象 第二个参数:回调方法在哪个线程中执行,如果是主队列则block在主线程中执行,非主队列则在子线程中执行 第三个参数:completionHandlerBlock块:接受到响应的时候执行该block中的代码 response:响应头信息 data:响应体 connectionError:错误信息,如果请求失败,那么该参数有值 */ [NSURLConnection sendAsynchronousRequest:request queue:[[NSOperationQueue alloc]init] completionHandler:^(NSURLResponse * __nullable response, NSData * __nullable data, NSError * __nullable connectionError) { //4.解析服务器返回的数据 NSString *str = [[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding]; //转换并打印响应头信息 NSHTTPURLResponse *r = (NSHTTPURLResponse *)response; NSLog(@"--%zd---%@--",r.statusCode,r.allHeaderFields); }];
- NSURLConnection异步请求(代理)
- 步骤:
- 确定url路径
- 创建request请求对象
- 创建NSURLConnection对象,并设置代理
- 遵守NSURLConnectionDelegate协议,并实现代理方法 - 在代理方法中监听网络请求
- 设置代理的几种方法:
/* 设置代理的第一种方式:自动发送网络请求 [[NSURLConnection alloc]initWithRequest:request delegate:self]; */ /* 设置代理的第二种方式: 第一个参数:请求对象 第二个参数:谁成为NSURLConnetion对象的代理 第三个参数:是否马上发送网络请求,如果该值为YES则立刻发送,如果为NO则不会发送网路请求 NSURLConnection *conn = [[NSURLConnection alloc]initWithRequest:request delegate:self startImmediately:NO]; //调用该方法控制网络请求的发送 [conn start]; */ //设置代理的第三种方式:使用类方法设置代理,会自动发送网络请求 NSURLConnection *conn = [NSURLConnection connectionWithRequest:request delegate:self]; //取消网络请求 //[conn cancel];
- 相关代理方法:
/*
1.当接收到服务器响应的时候调用
第一个参数connection:监听的是哪个NSURLConnection对象
第二个参数response:接收到的服务器返回的响应头信息
*/
- (void)connection:(nonnull NSURLConnection *)connection didReceiveResponse:(nonnull NSURLResponse *)response
/*
2.当接收到数据的时候调用,该方法会被调用多次
第一个参数connection:监听的是哪个NSURLConnection对象
第二个参数data:本次接收到的服务端返回的二进制数据(可能是片段)
*/
- (void)connection:(nonnull NSURLConnection *)connection didReceiveData:(nonnull NSData *)data
/*
3.当服务端返回的数据接收完毕之后会调用
通常在该方法中解析服务器返回的数据
*/
-(void)connectionDidFinishLoading:(nonnull NSURLConnection *)connection
/*4.当请求错误的时候调用(比如请求超时)
第一个参数connection:NSURLConnection对象
第二个参数:网络请求的错误信息,如果请求失败,则error有值
*/
- (void)connection:(nonnull NSURLConnection *)connection didFailWithError:(nonnull NSError *)error
- 其它知识点
- 关于消息弹窗第三方框架的使用
SVProgressHUD - 字符串截取相关方法
- (NSRange)rangeOfString:(NSString *)searchString; - (NSString *)substringWithRange:(NSRange)range;
- 关于消息弹窗第三方框架的使用
- NSURLConnection发送POST请求
- 发送POST请求对象方法
- 确定请求路径
- 创建可变请求对象
- 修改请求方法为POST,设置请求体(data)
- 发送异步请求
- 相关代码
//1.确定请求路径 NSURL *url = [NSURL URLWithString:@"http://120.25.226.186:32812/login"]; //2.创建请求对象 NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url]; //2.1更改请求方法 request.HTTPMethod = @"POST"; //2.2设置请求体 request.HTTPBody = [@"username=520it&pwd=520it" dataUsingEncoding:NSUTF8StringEncoding]; //2.3请求超时 request.timeoutInterval = 5; //2.4设置请求头 [request setValue:@"ios 9.0" forHTTPHeaderField:@"User-Agent"]; //3.发送请求 [NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse * __nullable response, NSData * __nullable data, NSError * __nullable connectionError) { //4.解析服务器返回的数据 if (connectionError) { NSLog(@"--请求失败-"); }else { NSLog(@"%@",[[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding]); } }];
- url中文转码问题:
//1.确定请求路径 NSString *urlStr = @"http://120.25.226.186:32812/login2?username=小码哥&pwd=520it"; NSLog(@"%@",urlStr); //中文转码操作 urlStr = [urlStr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; NSLog(@"%@",urlStr); NSURL *url = [NSURL URLWithString:urlStr];
- NSURLConnection和RunLoop(面试)
- 两种为NSURLConnection设置代理的区别
//第一种设置方式: //通过该方法设置代理,会自动的发送请求 // [[NSURLConnection alloc]initWithRequest:request delegate:self]; //第二种设置方式: //设置代理,startImmediately为NO的时候,该方法不会自动发送请求 NSURLConnection *connect = [[NSURLConnection alloc]initWithRequest:request delegate:self startImmediately:NO]; //手动通过代码的方式来发送请求 //注意该方法内部会自动的把connect添加到当前线程的RunLoop中在默认模式下执行 [connect start];
- 如何控制代理方法在哪个线程调用
//说明:默认情况下,代理方法会在主线程中进行调用(为了方便开发者拿到数据后处理一些刷新UI的操作不需要考虑到线程间通信) //设置代理方法的执行队列 [connect setDelegateQueue:[[NSOperationQueue alloc]init]];
- 开子线程发送网络请求的注意点,适用于自动发送网络请求:
//在子线程中发送网络请求-调用startf方法发送 -(void)createNewThreadSendConnect1 { //1.创建一个非主队列 NSOperationQueue *queue = [[NSOperationQueue alloc]init]; //2.封装操作,并把任务添加到队列中执行 [queue addOperationWithBlock:^{ NSLog(@"%@",[NSThread currentThread]); //2-1.确定请求路径 NSURL *url = [NSURL URLWithString:@"http://120.25.226.186:32812/login?username=dd&pwd=ww&type=JSON"]; //2-2.创建请求对象 NSURLRequest *request = [NSURLRequest requestWithURL:url]; //2-3.使用NSURLConnection设置代理,发送网络请求 NSURLConnection *connection = [[NSURLConnection alloc]initWithRequest:request delegate:self startImmediately:YES]; //2-4.设置代理方法在哪个队列中执行,如果是非主队列,那么代理方法将再子线程中执行 [connection setDelegateQueue:[[NSOperationQueue alloc]init]]; //2-5.发送网络请求 //注意:start方法内部会把当前的connect对象作为一个source添加到当前线程对应的runloop中 //区别在于,如果调用start方法开发送网络请求,那么再添加source的过程中,如果当前runloop不存在 //那么该方法内部会自动创建一个当前线程对应的runloop,并启动。 [connection start]; }]; } //在子线程中发送网络请求-自动发送网络请求 -(void)createNewThreadSendConnect2 { NSLog(@"-----"); //1.创建一个非主队列 NSOperationQueue *queue = [[NSOperationQueue alloc]init]; //2.封装操作,并把任务添加到队列中执行 [queue addOperationWithBlock:^{ //2-1.确定请求路径 NSURL *url = [NSURL URLWithString:@"http://120.25.226.186:32812/login?username=dd&pwd=ww&type=JSON"]; //2-2.创建请求对象 NSURLRequest *request = [NSURLRequest requestWithURL:url]; //2-3.使用NSURLConnection设置代理,发送网络请求 //注意:该方法内部虽然会把connection添加到runloop,但是如果当前的runloop不存在,那么不会主动创建。 NSURLConnection *connection = [NSURLConnection connectionWithRequest:request delegate:self]; //2-4.设置代理方法在哪个队列中执行,如果是非主队列,那么代理方法将再子线程中执行 [connection setDelegateQueue:[[NSOperationQueue alloc]init]]; //2-5 创建当前线程对应的runloop,并开启 [[NSRunLoop currentRunLoop]run]; }]; }
- NSURLSession的基本使用
//在子线程中发送网络请求-调用startf方法发送 -(void)createNewThreadSendConnect1 { //1.创建一个非主队列 NSOperationQueue *queue = [[NSOperationQueue alloc]init]; //2.封装操作,并把任务添加到队列中执行 [queue addOperationWithBlock:^{ NSLog(@"%@",[NSThread currentThread]); //2-1.确定请求路径 NSURL *url = [NSURL URLWithString:@"http://120.25.226.186:32812/login?username=dd&pwd=ww&type=JSON"]; //2-2.创建请求对象 NSURLRequest *request = [NSURLRequest requestWithURL:url]; //2-3.使用NSURLConnection设置代理,发送网络请求 NSURLConnection *connection = [[NSURLConnection alloc]initWithRequest:request delegate:self startImmediately:YES]; //2-4.设置代理方法在哪个队列中执行,如果是非主队列,那么代理方法将再子线程中执行 [connection setDelegateQueue:[[NSOperationQueue alloc]init]]; //2-5.发送网络请求 //注意:start方法内部会把当前的connect对象作为一个source添加到当前线程对应的runloop中 //区别在于,如果调用start方法开发送网络请求,那么再添加source的过程中,如果当前runloop不存在 //那么该方法内部会自动创建一个当前线程对应的runloop,并启动。 [connection start]; }]; } //在子线程中发送网络请求-自动发送网络请求 -(void)createNewThreadSendConnect2 { NSLog(@"-----"); //1.创建一个非主队列 NSOperationQueue *queue = [[NSOperationQueue alloc]init]; //2.封装操作,并把任务添加到队列中执行 [queue addOperationWithBlock:^{ //2-1.确定请求路径 NSURL *url = [NSURL URLWithString:@"http://120.25.226.186:32812/login?username=dd&pwd=ww&type=JSON"]; //2-2.创建请求对象 NSURLRequest *request = [NSURLRequest requestWithURL:url]; //2-3.使用NSURLConnection设置代理,发送网络请求 //注意:该方法内部虽然会把connection添加到runloop,但是如果当前的runloop不存在,那么不会主动创建。 NSURLConnection *connection = [NSURLConnection connectionWithRequest:request delegate:self]; //2-4.设置代理方法在哪个队列中执行,如果是非主队列,那么代理方法将再子线程中执行 [connection setDelegateQueue:[[NSOperationQueue alloc]init]]; //2-5 创建当前线程对应的runloop,并开启 [[NSRunLoop currentRunLoop]run]; }]; }