博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS开发 - 文件压缩与解压缩
阅读量:5955 次
发布时间:2019-06-19

本文共 6894 字,大约阅读时间需要 22 分钟。

第三方解压缩框架——SSZipArchive

下载地址: 

注意:需要引入libz.dylib框架 

// UnzippingNSString *zipPath = @"path_to_your_zip_file";NSString *destinationPath =@"path_to_the_folder_where_you_want_it_unzipped";[SSZipArchive unzipFileAtPath:zipPath toDestination:destinationPath];// ZippingNSString *zippedPath = @"path_where_you_want_the_file_created";NSArray *inputPaths = [NSArray arrayWithObjects:                       [[NSBundle mainBundle] pathForResource:@"photo1" ofType:@"jpg"],                       [[NSBundle mainBundle] pathForResource:@"photo2" ofType:@"jpg"]                       nil];[SSZipArchive createZipFileAtPath:zippedPath withFilesAtPaths:inputPaths];
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

一、技术方案 

1.第三方框架:SSZipArchive 
2.依赖的动态库:libz.dylib

二、压缩1 

1.第一个方法 
/** 
zipFile :产生的zip文件的最终路径 
directory : 需要进行的压缩的文件夹路径 
*/

[SSZipArchive createZipFileAtPath:zipFile withContentsOfDirectory:directory];
  • 1

2.第一个方法 

/** 
zipFile :产生的zip文件的最终路径 
files : 这是一个数组,数组里面存放的是需要压缩的文件的路径 
files = @[@”/Users/apple/Destop/1.png”, @”/Users/apple/Destop/3.txt”] 
*/

[SSZipArchive createZipFileAtPath:zipFile withFilesAtPaths:files];
  • 1

三、解压缩 

/** 
zipFile :需要解压的zip文件的路径 
dest : 解压到什么地方 
*/

[SSZipArchive unzipFileAtPath:zipFile toDestination:dest];
  • 1

文件压缩实例

#import "MalJobViewController.h"#import "SSZipArchive.h"#define MalJobFileBoundary @"heima"#define MalJobNewLine @"\r\n"#define MalJobEncode(str) [str dataUsingEncoding:NSUTF8StringEncoding]@interface MalJobViewController ()@end@implementation MalJobViewController- (void)viewDidLoad{    [super viewDidLoad];}- (NSString *)MIMEType:(NSURL *)url{    // 1.创建一个请求    NSURLRequest *request = [NSURLRequest requestWithURL:url];    // 2.发送请求(返回响应)    NSURLResponse *response = nil;    [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:nil];    // 3.获得MIMEType    return response.MIMEType;}- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{    NSString *caches = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];    // 0.获得需要压缩的文件夹    NSString *images = [caches stringByAppendingPathComponent:@"images"];    // 1.创建一个zip文件(压缩)    NSString *zipFile = [caches stringByAppendingPathComponent:@"images.zip"];    BOOL result = [SSZipArchive createZipFileAtPath:zipFile withContentsOfDirectory:images];    if(result) {        NSString *MIMEType = [self MIMEType:[NSURL fileURLWithPath:zipFile]];        NSData *data = [NSData dataWithContentsOfFile:zipFile];        [self upload:@"images.zip" mimeType:MIMEType fileData:data params:@{@"username" : @"lisi"}];    }}- (void)upload:(NSString *)filename mimeType:(NSString *)mimeType fileData:(NSData *)fileData params:(NSDictionary *)params{    // 1.请求路径    NSURL *url = [NSURL URLWithString:@"http://192.168.15.172:8080/Server/upload"];    // 2.创建一个POST请求    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];    request.HTTPMethod = @"POST";    // 3.设置请求体    NSMutableData *body = [NSMutableData data];    // 3.1.文件参数    [body appendData:MalJobEncode(@"--")];    [body appendData:MalJobEncode(MalJobFileBoundary)];    [body appendData:MalJobEncode(MalJobNewLine)];    NSString *disposition = [NSString stringWithFormat:@"Content-Disposition: form-data; name=\"file\"; filename=\"%@\"", filename];    [body appendData:MalJobEncode(disposition)];    [body appendData:MalJobEncode(MalJobNewLine)];    NSString *type = [NSString stringWithFormat:@"Content-Type: %@", mimeType];    [body appendData:MalJobEncode(type)];    [body appendData:MalJobEncode(MalJobNewLine)];    [body appendData:MalJobEncode(MalJobNewLine)];    [body appendData:fileData];    [body appendData:MalJobEncode(MalJobNewLine)];    // 3.2.非文件参数    [params enumerateKeysAndObjectsUsingBlock:^(id key, id obj, BOOL *stop) {        [body appendData:MalJobEncode(@"--")];        [body appendData:MalJobEncode(MalJobFileBoundary)];        [body appendData:MalJobEncode(MalJobNewLine)];        NSString *disposition = [NSString stringWithFormat:@"Content-Disposition: form-data; name=\"%@\"", key];        [body appendData:MalJobEncode(disposition)];        [body appendData:MalJobEncode(MalJobNewLine)];        [body appendData:MalJobEncode(MalJobNewLine)];        [body appendData:MalJobEncode([obj description])];        [body appendData:MalJobEncode(MalJobNewLine)];    }];    // 3.3.结束标记    [body appendData:MalJobEncode(@"--")];    [body appendData:MalJobEncode(MalJobFileBoundary)];    [body appendData:MalJobEncode(@"--")];    [body appendData:MalJobEncode(MalJobNewLine)];    request.HTTPBody = body;    // 4.设置请求头(告诉服务器这次传给你的是文件数据,告诉服务器现在发送的是一个文件上传请求)    NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@", MalJobFileBoundary];    [request setValue:contentType forHTTPHeaderField:@"Content-Type"];    // 5.发送请求    [NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {        NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:nil];        NSLog(@"%@", dict);    }];}@end
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112

文件解压缩实例

#import "MalJobViewController.h"#import "SSZipArchive.h"@implementation MalJobViewController- (void)viewDidLoad{    [super viewDidLoad];    // Do any additional setup after loading the view, typically from a nib.}- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{    NSURL *url = [NSURL URLWithString:@"http://localhost:8080/Server/resources/images.zip"];    NSURLSessionDownloadTask *task = [[NSURLSession sharedSession] downloadTaskWithURL:url completionHandler:^(NSURL *location, NSURLResponse *response, NSError *error) {        NSString *caches = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];        [SSZipArchive unzipFileAtPath:location.path toDestination:caches];    }];    [task resume];}@end

转载地址:http://cnlxx.baihongyu.com/

你可能感兴趣的文章
[PHP]PHP rpc框架hprose测试
查看>>
Atom 编辑器系列视频课程
查看>>
C#三种定时器
查看>>
范数 L1 L2
查看>>
协同过滤及大数据处理
查看>>
Java8 本地DateTime API
查看>>
jQuery 增加 删除 修改select option
查看>>
[原][osgearth]osgearthviewer读取earth文件,代码解析(earth文件读取的一帧)
查看>>
springboot 常用插件
查看>>
一个基于特征向量的近似网页去重算法——term用SVM人工提取训练,基于term的特征向量,倒排索引查询相似文档,同时利用cos计算相似度...
查看>>
[转]Newtonsoft.Json高级用法
查看>>
Spring+SpringMVC+MyBatis+easyUI整合基础篇(一)项目简述及技术选型介绍
查看>>
DFI、DPI技术
查看>>
hibernate 执行存储过程 方法
查看>>
RapidIOIP核的验证方法研究_王玉欢
查看>>
崩溃日志的实例
查看>>
base64是啥原理
查看>>
字符串中去除连续相同的字符保留一个
查看>>
实战 Windows Server 2012 群集共享卷
查看>>
CSS 元素超出部分滚动, 并隐藏滚动条
查看>>