您的位置:首页 > 移动开发 > IOS开发

iOS下载解压缩文件-ZipArchive与文件上传

2016-08-03 16:48 232 查看
1.压缩文件,用途比如QQ的换皮肤。

// Create
[SSZipArchive createZipFileAtPath: zipPath withContentsOfDirectory: sampleDataPath];

// Unzip
[SSZipArchive unzipFileAtPath:zipPath toDestination: unzipPath];


2.需要获取请求头的数据:

--\r\n

Content-Disposition:form-data;name="";filename=""\r\n

Content-type:文件的MIMEType\r\n

\r\n

文件数据

\r\n

--\r\n

3.MIMEType

png -> image/png

js -> application/javascript

text/txt -> text/plain

son -> application/json
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  压缩 ios