iOS开发网络篇之TZHFileManager使用介绍,文件附件下载、大文件下载、断点下载,下载至本地的本地文件查看,内存大小显示与删除

在项目里遇到附件的下载和本地查看功能,附件有可能是word pdf 图片 Excel表格 甚至是ppt 有点变态吧,大致就是点击下图的附件按钮然后查看附件:

screenshot.png

实现起来的具体思路就是文件的下载,和下载好的本地文件的查看两部分. 本人还是比较懒的,所以去著名的程序员单身交友网github上看看有没有好用的第三方框架,下了好几款,但是总结一下:都不太好用,所以就决定自己写一个顺手的.好了,废话不多说,下面具体的阐述我是怎么实现的:(demo已上传到github 点击查看: https://github.com/TZHui/TZHFileManager)

最重要的是首先创建一个TZHDownloadManager文件下载管理类.下面直接po代码,在.h文件中

import <Foundation/Foundation.h>

@interface TZHDownloadManager : NSObject

@property(nonatomic,strong)NSString *fileName;

+(instancetype)shared;

//异步下载的方法 进度的block
-(void)downloadAudioWithURL:(NSURL *)url andFormat:(NSString *)format progress:(void(^)(float progress))progressBlock complete:(void(^)(NSString *fileSavePath,NSError *error))completeBlock;

//判断是否正在下载
-(BOOL)isDownloadingAudioWithURL:(NSURL *)url;

//取消下载
-(void)cancelDownloadingAudioWithURL:(NSURL *)url andFormat:(NSString *)format complete:(void (^)())completeBlock;

//显示文件占内存大小
+(NSString *)getFileCacheSize;
//删除文件

+(void)deleteFileFromCache;

@end

在TZHDownloadManager.m文件中

import "TZHDownloadManager.h"

import "NSString+Hash.h"

@interface TZHDownloadManager ()<NSURLSessionDownloadDelegate>

@property (nonatomic, strong) NSURLSession *session;
@property(nonatomic,strong)NSString *fileForm;

@end
@implementation TZHDownloadManager{
//保存下载任务对应的进度block 和 完成的block
NSMutableDictionary *_progressBlocks;
NSMutableDictionary *_completeBlocks;
NSMutableDictionary *_downloadTasks;
}

static id _instance;

+(instancetype)shared{

static dispatch_once_t onceToken;

dispatch_once(&onceToken, ^{
    _instance = [[self alloc] init];
});
return _instance;

}

-(instancetype)init {
self = [super init];

if (self) {
    _progressBlocks = [NSMutableDictionary dictionary];
    _completeBlocks = [NSMutableDictionary dictionary];
    _downloadTasks = [NSMutableDictionary dictionary];
}
return self;

}

-(NSURLSession *)session {
if (!_session) {
NSURLSessionConfiguration *config = [NSURLSessionConfiguration defaultSessionConfiguration];

    _session = [NSURLSession sessionWithConfiguration:config delegate:self delegateQueue:[NSOperationQueue mainQueue]];
}
return _session;

}

-(BOOL)isDownloadingAudioWithURL:(NSURL *)url {

if (_completeBlocks[url]) {
    return YES;
}
return NO;

}

-(void)cancelDownloadingAudioWithURL:(NSURL *)url andFormat:(NSString *)format complete:(void (^)())completeBlock {

NSURLSessionDownloadTask *currentTask = _downloadTasks[url];
// 2.cancel
if (currentTask) {
    [currentTask cancelByProducingResumeData:^(NSData *_Nullable resumeData) {
        [resumeData writeToFile:[self getResumeDataPathWithURL:url andFormat:format] atomically:YES];
        //把取消成功的结果返回
        if (completeBlock) {
          completeBlock();
       }
       _progressBlocks[url] = nil;
       _completeBlocks[url] = nil;
       _downloadTasks[url] = nil;
    }];
}

}

//入口
-(void)downloadAudioWithURL:(NSURL *)url andFormat:(NSString *)format progress:(void (^)(float progress))progressBlock complete:(void (^)(NSString *fileSavePath, NSError *error))completeBlock {

NSFileManager *fileMan = [NSFileManager defaultManager];
NSLog(@"下载工具中打印格式%@",format);
_fileForm = format;
NSString *fileSavePath = [self getFileSavePathWithURL:url andFormat:format];
if ([fileMan fileExistsAtPath:fileSavePath]) {
    NSLog(@"文件已经存在");
    if (completeBlock) {
        completeBlock(fileSavePath, nil);
    }
    return;
}
if ([self isDownloadingAudioWithURL:url]) {
    NSLog(@"正在下载");
    return;
}
[_progressBlocks setObject:progressBlock forKey:url];
[_completeBlocks setObject:completeBlock forKey:url];
NSString *resumeDataPath = [self getResumeDataPathWithURL:url andFormat:format];
NSURLSessionDownloadTask *downloadTask;
if ([fileMan fileExistsAtPath:resumeDataPath]) {
    NSData *resumeData = [NSData dataWithContentsOfFile:resumeDataPath];
    downloadTask = [self.session downloadTaskWithResumeData:resumeData];
} else {
    downloadTask = [self.session downloadTaskWithURL:url];
}
[_downloadTasks setObject:downloadTask forKey:url];
//开启
[downloadTask resume];

}

-(NSString *)getResumeDataPathWithURL:(NSURL *)url andFormat:(NSString *)format{
NSString *tmpPath = NSTemporaryDirectory();

NSString *fileName = [NSString stringWithFormat:@"%@%@",[url.absoluteString md5String],format];
return [tmpPath stringByAppendingPathComponent:fileName];

}

-(NSString *)getFileSavePathWithURL:(NSURL *)url andFormat:(NSString *)format{

NSString *cachePath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];
NSFileManager *fileManager = [NSFileManager defaultManager];
NSString *TZHCachePath = [cachePath stringByAppendingPathComponent:@"TZHDownloadFile"];
[fileManager createDirectoryAtPath:TZHCachePath withIntermediateDirectories:YES attributes:nil error:nil];

NSString *fileName = [NSString stringWithFormat:@"%@%@",[url.absoluteString md5String],format];
_fileName = fileName;
return [TZHCachePath stringByAppendingPathComponent:fileName];
}

// sessionDelegate 代理方法

-(void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didFinishDownloadingToURL:(NSURL *)location {

NSFileManager *fileMan = [NSFileManager defaultManager];

NSURL *currentURL = downloadTask.currentRequest.URL;
[fileMan copyItemAtPath:location.path toPath:[self getFileSavePathWithURL:currentURL andFormat:_fileForm] error:NULL];

if (_completeBlocks[currentURL]) {
    void (^tmpCompBlock)(NSString *filePath, NSError *error) = _completeBlocks[currentURL];
    tmpCompBlock([self getFileSavePathWithURL:currentURL andFormat:_fileForm], nil);
}
_progressBlocks[currentURL] = nil;
_completeBlocks[currentURL] = nil;
_downloadTasks[currentURL] = nil;

}

-(void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didWriteData:(int64_t)bytesWritten totalBytesWritten:(int64_t)totalBytesWritten totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite {

float progress = totalBytesWritten * 1.0 / totalBytesExpectedToWrite;
NSURL *url = downloadTask.currentRequest.URL;
if (_progressBlocks[url]) {
   void (^tmpProBlock)(float) = _progressBlocks[url];
   tmpProBlock(progress);
}

}

+(NSString *)getFileCacheSize{

NSString *cachePath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];
NSString *TZHCachePath = [cachePath stringByAppendingPathComponent:@"TZHDownloadFile"];
NSArray *subPathArr = [[NSFileManager defaultManager] subpathsAtPath:TZHCachePath];
NSString *filePath  = nil;
NSInteger totleSize = 0;
for (NSString *subPath in subPathArr){
    filePath =[TZHCachePath stringByAppendingPathComponent:subPath];
    BOOL isDirectory = NO;
    BOOL isExist = [[NSFileManager defaultManager] fileExistsAtPath:filePath isDirectory:&isDirectory];
    if (!isExist || isDirectory || [filePath containsString:@".DS"]){
        continue;
    }
    
    NSDictionary *dict = [[NSFileManager defaultManager] attributesOfItemAtPath:filePath error:nil];
    NSInteger size = [dict[@"NSFileSize"] integerValue];
    totleSize += size;
}
NSString *totleStr = nil;
if (totleSize > 1000 * 1000){
    totleStr = [NSString stringWithFormat:@"%.2fM",totleSize / 1000.00f /1000.00f];
}else if (totleSize > 1000){
    totleStr = [NSString stringWithFormat:@"%.2fKB",totleSize / 1000.00f ];
}else{
   totleStr = [NSString stringWithFormat:@"%.2fB",totleSize / 1.00f];
}
return totleStr;

}

+(void)deleteFileFromCache{

NSString *cachePath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];
NSString *TZHCachePath = [cachePath stringByAppendingPathComponent:@"TZHDownloadFile"];
NSFileManager *fileManager = [NSFileManager defaultManager];
NSArray *array = [fileManager contentsOfDirectoryAtPath:TZHCachePath error:nil];
for(NSString *fileName in array){
    [fileManager removeItemAtPath:[TZHCachePath stringByAppendingPathComponent:fileName] error:nil];
}

}
@end

下载的管理类写好之后 只需要在需要调用的地方调用相应的接口方法就可以了,

//异步下载的方法 进度的block
-(void)downloadAudioWithURL:(NSURL *)url andFormat:(NSString *)format progress:(void(^)(float progress))progressBlock complete:(void(^)(NSString *fileSavePath,NSError *error))completeBlock;

//判断是否正在下载
-(BOOL)isDownloadingAudioWithURL:(NSURL *)url;

//取消下载

  • (void)cancelDownloadingAudioWithURL:(NSURL *)url andFormat:(NSString *)format complete:(void (^)())completeBlock;

//显示文件占内存大小

  • (NSString *)getFileCacheSize;
    //删除文件

+(void)deleteFileFromCache;

实现了下载功能之后,需要做的就是如何把下载在本地沙盒文件给显示出来了,楼主试过很多方法 有苹果自备的api 但是都不好用,最后使用UIWebView来实现的,这个在之前的文章里已经说过了实现原理了 有兴趣的老铁可以点击底下的这个链接,查看实现的详细过程

http://www.jianshu.com/p/ee96475018ee

以下po出最终的实现效果:

动图.gif

之前在github上没有找到合适的框架,所以自己封装了一个文件下载与查看的框架 放到了github上供大家下载,有详细的demo 使用直接把TZHFileManager 拖进项目的资源路径下即可,集成也相当简单,只需要两步,demo里已做了详细的说明,有兴趣的老铁可以下载下来看看,欢迎给我提建议 QQ:734754688

github地址: https://github.com/TZHui/TZHFileManager

原创不易啊 !觉得好用 喜欢的话记得给我打星呀 😁

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,839评论 6 482
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,543评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 153,116评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,371评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,384评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,111评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,416评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,053评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,558评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,007评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,117评论 1 334
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,756评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,324评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,315评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,539评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,578评论 2 355
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,877评论 2 345

推荐阅读更多精彩内容