zoukankan      html  css  js  c++  java
  • 源码0603-01-了解-大文件下载(NSOutputStream)

    NSOutputStream 数据流的使用

    //  ViewController.m
    //  01-了解-大文件下载(NSOutputStream)
    
    #import "ViewController.h"
    
    @interface ViewController () <NSURLConnectionDataDelegate>
    /** 输出流对象 */
    @property (nonatomic, strong) NSOutputStream *stream;
    @end
    
    @implementation ViewController
    
    - (void)viewDidLoad {
        [super viewDidLoad];
        
        [NSURLConnection connectionWithRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://120.25.226.186:32812/resources/videos/minion_01.mp4"]] delegate:self];
    }
    
    #pragma mark - <NSURLConnectionDataDelegate>
    - (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
    {
        // response.suggestedFilename : 服务器那边的文件名
        
        // 文件路径
        NSString *caches = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];
        NSString *file = [caches stringByAppendingPathComponent:response.suggestedFilename];
        NSLog(@"%@", file);
        
        // 利用NSOutputStreamPath中写入数据(append为YES的话,每次写入都是追加到文件尾部
        self.stream = [[NSOutputStream alloc] initToFileAtPath:file append:YES];
        // 打开流(如果文件不存在,会自动创建)
        [self.stream open];
    }
    
    - (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
    {
        [self.stream write:[data bytes] maxLength:data.length];
        NSLog(@"didReceiveData-------");
    }
    
    - (void)connectionDidFinishLoading:(NSURLConnection *)connection
    {
        [self.stream close];
        NSLog(@"-------");
    }
    
    @end
    //  ViewController.m
    //  03-NSURLConnection与RunLoop
    #import "ViewController.h"
    
    @interface ViewController () <NSURLConnectionDataDelegate>
    /** runLoop */
    @property (nonatomic, assign) CFRunLoopRef runLoop;
    @end
    
    @implementation ViewController
    
    - (void)viewDidLoad {
        [super viewDidLoad];
        
        dispatch_async(dispatch_get_global_queue(0, 0), ^{
            NSURLConnection *conn = [NSURLConnection connectionWithRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://120.25.226.186:32812/resources/images/minion_01.png"]] delegate:self];
            // 决定代理方法在哪个队列中执行
            [conn setDelegateQueue:[[NSOperationQueue alloc] init]];
            
            // 启动子线程的runLoop
    //        [[NSRunLoop currentRunLoop] run];
            
            self.runLoop = CFRunLoopGetCurrent();
            
            // 启动runLoop
            CFRunLoopRun();
        });
    }
    
    #pragma mark - <NSURLConnectionDataDelegate>
    - (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
    {
        NSLog(@"didReceiveResponse----%@", [NSThread currentThread]);
    }
    
    - (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
    {
        
        NSLog(@"didReceiveData----%@", [NSThread currentThread]);
    }
    
    - (void)connectionDidFinishLoading:(NSURLConnection *)connection
    {
        NSLog(@"connectionDidFinishLoading----%@", [NSThread currentThread]);
        
        // 停止RunLoop
        CFRunLoopStop(self.runLoop);
    }
    
    @end
    本人无商业用途,仅仅是学习做个笔记,特别鸣谢小马哥,学习了IOS,另日语学习内容有需要文本和音频请关注公众号:riyuxuexishuji
  • 相关阅读:
    sql 有条件计数
    easyui combox 手动添加项
    只有设置了 name 属性的表单元素才能在提交表单时传递它们的值
    除湿方法
    android 页面跳转,数据回传
    android studio 乱码
    android studio 工具
    gridlaylout 简单布局
    android 开发 简单的页面布局
    android sdk
  • 原文地址:https://www.cnblogs.com/laugh/p/6610855.html
Copyright © 2011-2022 走看看