IOS-网络(大文件下载)

一、不合理方式

 1 //
 2 //  ViewController.m
 3 //  IOS_0131_大文件下载
 4 //
 5 //  Created by ma c on 16/1/31.
 6 //  Copyright © 2016年 博文科技. All rights reserved.
 7 //
 8 
 9 #import "ViewController.h"
10 
11 @interface ViewController ()<NSURLConnectionDataDelegate>
12 
13 //进度条
14 @property (weak, nonatomic) IBOutlet UIProgressView *progressView;
15 //存数据
16 @property (nonatomic, strong) NSMutableData *fileData;
17 //文件总长度
18 @property (nonatomic, assign) long long totalLength;
19 
20 @end
21 
22 @implementation ViewController
23 
24 - (void)viewDidLoad {
25     [super viewDidLoad];
26 
27     self.view.backgroundColor = [UIColor cyanColor];
28 }
29 
30 - (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
31 {
32     [self download];
33 }
34 
35 - (void)download
36 {
37     //1.NSURL
38     NSURL *url = [NSURL URLWithString:@"http://localhost:8080/MJServer/resources/videos/minion_01.mp4"];
39     //2.请求
40     NSURLRequest *request = [NSURLRequest requestWithURL:url];
41     //3.下载(创建完conn后会自动发起一个异步请求)
42     [NSURLConnection connectionWithRequest:request delegate:self];
43     
44     //[[NSURLConnection alloc] initWithRequest:request delegate:self];
45     //[[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:YES];
46     //NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:NO];
47     //[conn start];
48 }
49 #pragma mark - NSURLConnectionDataDelegate的代理方法
50 //请求失败时调用
51 - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
52 {
53     NSLog(@"didFailWithError");
54 }
55 //接收到服务器响应就会调用
56 - (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
57 {
58     //NSLog(@"didReceiveResponse");
59     self.fileData = [NSMutableData data];
60     
61     //取出文件的总长度
62     //NSHTTPURLResponse *resp = (NSHTTPURLResponse *)response;
63     //long long fileLength = [resp.allHeaderFields[@"Content-Length"] longLongValue];
64     
65     self.totalLength = response.expectedContentLength;
66 }
67 //当接收到服务器返回的实体数据时就会调用(这个方法根据数据的实际大小可能被执行多次)
68 - (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
69 {
70     //拼接数据
71     [self.fileData appendData:data];
72     
73     //设置进度条(0~1)
74     self.progressView.progress = (double)self.fileData.length / self.totalLength;
75     
76     NSLog(@"didReceiveData -> %ld",self.fileData.length);
77 }
78 //加载完毕时调用(服务器的数据完全返回后)
79 - (void)connectionDidFinishLoading:(NSURLConnection *)connection
80 {
81     //NSLog(@"connectionDidFinishLoading");
82     //拼接文件路径
83     NSString *cache = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];
84     NSString *file = [cache stringByAppendingPathComponent:@"minion_01.mp4"];
85     //NSLog(@"%@",file);
86     
87     //写到沙盒之中
88     [self.fileData writeToFile:file atomically:YES];
89 }
90 
91 @end

 二、内存优化

 1 //
 2 //  ViewController.m
 3 //  IOS_0201_大文件下载(合理方式)
 4 //
 5 //  Created by ma c on 16/2/1.
 6 //  Copyright © 2016年 博文科技. All rights reserved.
 7 //
 8 
 9 #import "ViewController.h"
10 
11 @interface ViewController ()<NSURLConnectionDataDelegate>
12 
13 ///用来写数据的句柄对象
14 @property (nonatomic, strong) NSFileHandle *writeHandle;
15 ///文件总大小
16 @property (nonatomic, assign) long long totalLength;
17 ///当前已写入文件大小
18 @property (nonatomic, assign) long long currentLength;
19 
20 @end
21 
22 @implementation ViewController
23 
24 - (void)viewDidLoad {
25     [super viewDidLoad];
26     
27     self.view.backgroundColor = [UIColor cyanColor];
28  
29 }
30 
31 - (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
32 {
33     [self download];
34 }
35 
36 - (void)download
37 {
38     //1.NSURL
39     NSURL *url = [NSURL URLWithString:@"http://localhost:8080/MJServer/resources/videos/minion_02.mp4"];
40     //2.请求
41     NSURLRequest *request = [NSURLRequest requestWithURL:url];
42     //3.下载(创建完conn后会自动发起一个异步请求)
43     [NSURLConnection connectionWithRequest:request delegate:self];
44 
45 }
46 #pragma mark - NSURLConnectionDataDelegate的代理方法
47 //请求失败时调用
48 - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
49 {
50     
51 }
52 //接收到服务器响应时调用
53 - (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
54 {
55     //文件路径
56     NSString *cache = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];
57     NSString *file = [cache stringByAppendingPathComponent:@"minion_02.mp4"];
58     NSLog(@"%@",file);
59     //创建一个空文件到沙盒中
60     NSFileManager *fileManager = [NSFileManager defaultManager];
61     [fileManager createFileAtPath:file contents:nil attributes:nil];
62     
63     //创建一个用来写数据的文件句柄
64     self.writeHandle = [NSFileHandle fileHandleForWritingAtPath:file];
65     
66     //文件总大小
67     self.totalLength = response.expectedContentLength;
68     
69 }
70 //接收到服务器数据时调用(根据文件大小,调用多次)
71 - (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
72 {
73     //移动到文件结尾
74     [self.writeHandle seekToEndOfFile];
75     //写入数据
76     [self.writeHandle writeData:data];
77     //累计文件长度
78     self.currentLength += data.length;
79     NSLog(@"下载进度-->%lf",(double)self.currentLength / self.totalLength);
80     
81 }
82 //从服务器接收数据完毕时调用
83 - (void)connectionDidFinishLoading:(NSURLConnection *)connection
84 {
85     
86     self.currentLength = 0;
87     self.totalLength = 0;
88     //关闭文件
89     [self.writeHandle closeFile];
90     self.writeHandle = nil;
91     
92 }
93 @end

 三、断点续传

  1 //
  2 //  ViewController.m
  3 //  IOS_0201_大文件下载(合理方式)
  4 //
  5 //  Created by ma c on 16/2/1.
  6 //  Copyright © 2016年 博文科技. All rights reserved.
  7 //
  8 
  9 #import "ViewController.h"
 10 
 11 @interface ViewController ()<NSURLConnectionDataDelegate>
 12 
 13 ///用来写数据的句柄对象
 14 @property (nonatomic, strong) NSFileHandle *writeHandle;
 15 ///连接对象
 16 @property (nonatomic, strong) NSURLConnection *conn;
 17 
 18 ///文件总大小
 19 @property (nonatomic, assign) long long totalLength;
 20 ///当前已写入文件大小
 21 @property (nonatomic, assign) long long currentLength;
 22 
 23 - (IBAction)btnClick:(UIButton *)sender;
 24 @property (weak, nonatomic) IBOutlet UIButton *btnClick;
 25 
 26 @property (weak, nonatomic) IBOutlet UIProgressView *progressView;
 27 
 28 @end
 29 
 30 @implementation ViewController
 31 
 32 - (void)viewDidLoad {
 33     [super viewDidLoad];
 34     
 35     self.view.backgroundColor = [UIColor cyanColor];
 36     //设置进度条起始状态
 37     self.progressView.progress = 0.0;
 38  
 39 }
 40 
 41 #pragma mark - NSURLConnectionDataDelegate的代理方法
 42 //请求失败时调用
 43 - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
 44 {
 45     
 46 }
 47 //接收到服务器响应时调用
 48 - (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
 49 {
 50     if (self.currentLength) return;
 51     //文件路径
 52     NSString *cache = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];
 53     NSString *file = [cache stringByAppendingPathComponent:@"minion_02.mp4"];
 54     NSLog(@"%@",file);
 55     //创建一个空文件到沙盒中
 56     NSFileManager *fileManager = [NSFileManager defaultManager];
 57     [fileManager createFileAtPath:file contents:nil attributes:nil];
 58     
 59     //创建一个用来写数据的文件句柄
 60     self.writeHandle = [NSFileHandle fileHandleForWritingAtPath:file];
 61     
 62     //文件总大小
 63     self.totalLength = response.expectedContentLength;
 64     
 65 }
 66 //接收到服务器数据时调用(根据文件大小,调用多次)
 67 - (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
 68 {
 69     //移动到文件结尾
 70     [self.writeHandle seekToEndOfFile];
 71     //写入数据
 72     [self.writeHandle writeData:data];
 73     //累计文件长度
 74     self.currentLength += data.length;
 75     //设置进度条进度
 76     self.progressView.progress = (double)self.currentLength / self.totalLength;
 77     
 78     NSLog(@"下载进度-->%lf",(double)self.currentLength / self.totalLength);
 79     
 80     
 81 }
 82 //从服务器接收数据完毕时调用
 83 - (void)connectionDidFinishLoading:(NSURLConnection *)connection
 84 {
 85     
 86     self.currentLength = 0;
 87     self.totalLength = 0;
 88     //关闭文件
 89     [self.writeHandle closeFile];
 90     self.writeHandle = nil;
 91     //下载完成后,状态取反
 92     self.btnClick.selected = !self.btnClick.isSelected;
 93 }
 94 
 95 - (IBAction)btnClick:(UIButton *)sender {
 96     //状态取反
 97     sender.selected = !sender.isSelected;
 98     if (sender.selected) {  //继续下载
 99         //1.NSURL
100         NSURL *url = [NSURL URLWithString:@"http://localhost:8080/MJServer/resources/videos/minion_02.mp4"];
101         //2.请求
102         NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
103         
104         //设置请求头
105         NSString *range = [NSString stringWithFormat:@"bytes=%lld-",self.currentLength];
106         [request setValue:range forHTTPHeaderField:@"Range"];
107         
108         //3.下载(创建完conn后会自动发起一个异步请求)
109         self.conn = [NSURLConnection connectionWithRequest:request delegate:self];
110         
111     } else {  //暂停下载
112         [self.conn cancel];
113         self.conn = nil;
114         
115     }
116 
117 }
118 @end

 

转载于:https://www.cnblogs.com/oc-bowen/p/5175207.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/289247.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

地理素养的核心构成和主要特点

素养教育已成为21世纪国际教育发展的重大课题和紧迫任务。新一轮地理课程改革把地理素养置于地理课程目标的核心地位。因此,统一认识和准确把握地理素养的内涵与特质,对于促进学生的全面发展具有十分重要的意义。 一、地理素养的内涵与组成 地理素养是指学习者经过地理学习后…

【开题报告】基于SpringBoot的电子二手产品交易平台的设计与实现

1.研究背景 随着互联网的快速发展和普及&#xff0c;电子商务行业蓬勃发展&#xff0c;二手产品交易作为电子商务领域的一个重要分支也得到了广泛关注。传统的线下二手交易存在一些问题&#xff0c;例如信息不对称、交易风险高、交易流程繁琐等&#xff0c;这些问题限制了用户…

Blazor University (9)组件 — 代码生成 HTML 属性

原文链接&#xff1a;https://blazor-university.com/components/code-generated-html-attributes/代码生成 HTML 属性Razor 在条件 HTML 输出或在 for 循环中输出 HTML 时非常棒&#xff0c;但在元素本身内的条件代码方面&#xff0c;事情就有点棘手了。例如&#xff0c;以下代…

python重定向_在Python中使用urlopen()防止“隐藏”重定向

我正在使用BeautifulSoup进行网页抓取,并且在使用urlopen时遇到特定类型网站的问题.网站上的每个商品都有其独特的页面,并且商品具有不同的格式(例如&#xff1a;500 mL,1L,2L等). 当我使用Internet浏览器打开产品的URL(www.example.com/product1)时,会看到500 mL格式的图片,有…

CentOS安装JAVA JDK

普通情况下&#xff0c;我们都要将linux自带的OPENJDK卸载掉。然后安装SUN的JDK。首先查看Linux自带的JDK是否已安装。 输入例如以下命令&#xff0c;查看已经安装的JAVA版本号信息。 Linux代码 java -version 输入例如以下命令。查看JDK的信息。Linux代码 rpm -qa|grep j…

Android之解决Android8.0手机(Notification)收不到自定义消息通知以及其它手机得到数据不同步

1 问题 app,自定义消息通知的时候,在Android8.0手机上收不到通知 2 解决办法 NotificationManager需要创建NotificationChannel,然后调用createNotificationChannel把NotificationChannel传递进去,并且通过setChannelId设置相应的id 3 普通样本代码实现 private static fina…

世界史

评价华盛顿&#xff1a;打破一个旧世界需要勇气与胆魄&#xff0c;建设一个新世界却需要耐心与智慧。

安装bigdesk后es无法启动_安装天正后,探索者无法双击启动?

用户经常会出现&#xff0c;安装天正后&#xff0c;探索者无法双击启动&#xff0c;或者是图纸无法拖拽入CAD中&#xff0c;如何解决&#xff1f;答&#xff1a;天正安装完成后&#xff0c;默认将CAD的acad.exe程序&#xff0c;添加了“以管理员身份运行此程序”而导致的&#…

服务器安全维护包含,服务器安全维护包含

服务器安全维护包含 内容精选换一换本章节介绍如何使用管理控制台向导创建裸金属服务器。创建裸金属服务器时&#xff0c;您需要配置规格、镜像、存储、网络、安全组等必备信息。同时&#xff0c;向导也提供了丰富的扩展配置功能&#xff0c;方便您进行个性化部署和管理。在创建…

VS2008系统开发背景图片的添加及注意事项

最初的做法是&#xff0c;直接将父窗体的Image属性改成背景图片&#xff0c;并将其BackgroundImageLayout属性设置为stretch&#xff0c;结果发现这样做的结果是系统运行超级慢&#xff0c;便考虑用代码实现&#xff0c;如下&#xff1a; //this.BackgroundImage System.Draw…

JavaScript中的的面向对象中的一些知识

JavaScript中的的面向对象中的一些知识 function Cat(name,age){return {name:name,age:age }}//构造函数function Dog(name,age){this.namename;this.ageage; }function show(){var c1new Cat("cat1",18);var c2new Cat("cat2",19);//Javascript还提…

C# 发出异步的Get请求

下列的下载代码示例是 HttpClientSample。它以不同的方式异步调用Web 服务。为了演示本例使用的不同方法&#xff0c;使用了命令行参数。示例代码使用了以下名称空间&#xff1a;System System.Linq System.Net System.Net.Http System.Net.Http.Headers System.Threading Sy…

python用pandas读取excel_Python使用pandas读取Excel文件数据和预处理小案例

假设有Excel文件data.xlsx&#xff0c;其中内容为 现在需要将这个Excel文件中的数据读入pandas&#xff0c;并且在后续的处理中不关心ID列&#xff0c;还需要把sex列的female替换为1&#xff0c;把sex列的male替换为0。本文演示有关的几个操作。 &#xff08;1&#xff09;导入…

shader 3 rendering path

渲染通道&#xff0c; rendering path。 vertexlit&#xff0c; forward 和 Deferred lighting 旧有的非统一架构下&#xff1a; 分为顶点着色引擎和像素渲染通道 渲染通道是GPU负责给图像配色的专门通道&#xff1b; 越多&#xff0c;填充效率越高&#xff0c;流畅性越好。 ht…

《帝王三部曲》——二月河

前一段时间断断续续的在看二月河写的《帝王三部曲》中的《雍正王朝》。写的真棒&#xff01;然后又迫不及待地去读远上搜索下载了三部曲全本&#xff0c;可惜&#xff0c;下载到现在一直未去看…… 生活总是这样&#xff0c;忙忙碌碌的……欲望太多。 希望自己以后做事情&#…

React Native之Props(属性)和State(状态)和简单样式简单使用

1 Props(属性)和State(状态)和简单样式简单使用App.js代码如下 /*** Sample React Native App* https://github.com/facebook/react-native** format* flow*/import React, {Component} from react; import {Platform, StyleSheet, Text, View, NativeModules, DeviceEvent…

解决SQL Server 2005数据库中datetime时间字段在前端显示时分秒的问题

SQL Server 2005中时间类型datetime的格式是“年月日时分秒”,直接读出来该字段,为了不让它在前端显示“时分秒”若是显示在dataGridView中,可以修改控件的某一列格式,如: dataGridView1.Columns[10].DefaultCellStyle.Format = "yyyy-MM-dd"; 但是要在listview…

config kubectl_Kubernetes(k8s)中文文档 kubectl config set-context_Kubernetes中文社区

译者&#xff1a;hurf在kubeconfig配置文件中设置一个环境项。摘要在kubeconfig配置文件中设置一个环境项。 如果指定了一个已存在的名字&#xff0c;将合并新字段并覆盖旧字段。kubectl config set-context NAME [--clustercluster_nickname] [--useruser_nickname] [--namesp…

Linux文件系统基础(1)

本文首发于http://oliveryang.net&#xff0c;转载时请包含原文或者作者网站链接。 1. 什么是文件系统 直接引用来自维基百科文件系统的定义&#xff0c; A file system is a set of abstract data types that are implemented for the storage, hierarchical organization, ma…

使用基于Roslyn的编译时AOP框架来解决.NET项目的代码复用问题

理想的代码优化方式团队日常协作中&#xff0c;自然而然的会出现很多重复代码&#xff0c;根据这些代码的种类&#xff0c;之前可能会以以下方式处理方式描述应用时可能产生的问题硬编码多数新手&#xff0c;或逐渐腐坏的项目会这么干&#xff0c;会直接复制之前实现的代码带来…