iOS网络编程(九)

作者: BEYOND黄 | 来源:发表于2017-06-01 17:14 被阅读10次

1.多线程下载文件思路:

开几个子线程来进行下载,通过设定请求头来下载各自的部分,通过NSFilehandle来把数据写进文件,这个类里有在任意位置写数据的方法。

2.文件的压缩和解压缩:第三方解压缩框架——ZipArchive

需要引入libz.dylib框架

导入头文件Main.h

创建压缩文件

+ (BOOL)createZipFileAtPath:(NSString *)path

withFilesAtPaths:(NSArray *)paths;

+ (BOOL)createZipFileAtPath:(NSString *)path

withContentsOfDirectory:(NSString *)directoryPath;

解压

+ (BOOL)unzipFileAtPath:(NSString *)path

toDestination:(NSString *)destination

3.NSURLConnection和Runloop

#import"ViewController.h"

@interfaceViewController()

@end

@implementationViewController

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent*)event

{

[selfnewThreadDelegate2];

}

-(void)delegate1

{

NSURLRequest*request = [NSURLRequestrequestWithURL:[NSURLURLWithString:@"http://120.25.226.186:32812/login?username=123&pwd=123&type=JSON"]];

//设置代理

//代理方法:默认是在主线程中调用的

NSURLConnection*connect = [NSURLConnectionconnectionWithRequest:requestdelegate:self];

//设置代理方法在哪个线程中调用

//[NSOperationQueue alloc]init]]开子线程

//[NSOperationQueue mainQueue]不能这样设置

[connectsetDelegateQueue:[[NSOperationQueuealloc]init]];

//[connect setDelegateQueue:[NSOperationQueue mainQueue]];

NSLog(@"-------");

}

-(void)delegate2

{

NSURLRequest*request = [NSURLRequestrequestWithURL:[NSURLURLWithString:@"http://120.25.226.186:32812/login?username=123&pwd=123&type=JSON"]];

//设置代理

//代理方法:默认是在主线程中调用的

NSURLConnection*connect = [[NSURLConnectionalloc]initWithRequest:requestdelegate:selfstartImmediately:NO];

[connectsetDelegateQueue:[[NSOperationQueuealloc]init]];

//开始发送请求

[connectstart];

NSLog(@"-------");

}

-(void)newThreadDelegate1

{

dispatch_async(dispatch_get_global_queue(0,0), ^{

NSURLRequest*request = [NSURLRequestrequestWithURL:[NSURLURLWithString:@"http://120.25.226.186:32812/login?username=123&pwd=123&type=JSON"]];

//设置代理

//代理方法:默认是在主线程中调用的

//该方法内部其实会将connect对象作为一个source添加到当前的runloop中,指定运行模式为默认

NSURLConnection*connect = [NSURLConnectionconnectionWithRequest:requestdelegate:self];

//设置代理方法在哪个线程中调用

[connectsetDelegateQueue:[[NSOperationQueuealloc]init]];

//[[NSRunLoop currentRunLoop] runMode:UITrackingRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:1000]];

[[NSRunLoopcurrentRunLoop]run];

NSLog(@"---%@----",[NSThreadcurrentThread]);

});

}

-(void)newThreadDelegate2

{

dispatch_async(dispatch_get_global_queue(0,0), ^{

NSURLRequest*request = [NSURLRequestrequestWithURL:[NSURLURLWithString:@"http://120.25.226.186:32812/login?username=123&pwd=123&type=JSON"]];

//设置代理

//代理方法:默认是在主线程中调用的

NSURLConnection*connect = [[NSURLConnectionalloc]initWithRequest:requestdelegate:selfstartImmediately:NO];

[connectsetDelegateQueue:[[NSOperationQueuealloc]init]];

//开始发送请求

//如如果connect对象没有添加到runloop中,那么该方法内部会自动的添加到runloop

//注意:如果当前的runloop没有开启,那么该方法内部会自动获得当前线程对应的runloop对象并且开启

[connectstart];

NSLog(@"---%@----",[NSThreadcurrentThread]);

});

}

#pragma mark ----------------------

#pragma mark NSURLConnectionDataDelegate

-(void)connection:(NSURLConnection*)connection didReceiveResponse:(NSURLResponse*)response

{

NSLog(@"didReceiveResponse---%@",[NSThreadcurrentThread]);

}

@end

相关文章

  • iOS网络编程(九)

    1.多线程下载文件思路: 开几个子线程来进行下载,通过设定请求头来下载各自的部分,通过NSFilehandle来把...

  • iOS搭建Socket服务器的相关方法

    iOS网络编程层次 iOS网络编程层次结构也分为三层: Cocoa层:NSURL,Bonjour,Game Kit...

  • Socket

    Socket iOS网络编程层次结构 iOS网络编程层次结构分为三层,从上往下依次为: Cocoa层:NSURL,...

  • iOS关于HTTP协议和网络编程

    1.网络编程 1>什么是网络编程? 网络编程,是我们iOS程序开发者针对网络模块进行得代码编程,是作为一个资深开发...

  • IOS网络编程

    IOS网络编程 NSURLConnection NSURLSession是NSURLConnection 的替代者...

  • 网络相关以及TCP/IP协议

    一、iOS9 网络编程的重大改变: 1、网络请求方式的改变 1)NSURLConnection: iOS9之前使用...

  • iOS网络编程

    iOS网络相关类介绍 网络请求地址对象——NSURL url 介绍url,统一资源定位符,也被称为网址,因特网上标...

  • iOS网络编程

    网络编程 1. 概论 建立连接:通过IP或者域名来连接两台设备,通过端口号找到对应的通信程序 通信协议:要传输的数...

  • iOS网络编程

    一、URL URL的全称是Uniform Resource Locator(统一资源定位符),通过1个URL,能找...

  • iOS 网络编程

    网络层次简介 网络七层由下往上分别为物理层、数据链路层、网络层、传输层、会话层、表示层和应用层。其中物理层、数据链...

网友评论

    本文标题:iOS网络编程(九)

    本文链接:https://www.haomeiwen.com/subject/iguefxtx.html