关于本文档的说明
本文档基于ICSharpCode.SharpZiplib.dll的封装,常用的解压和压缩方法都已经涵盖在内,都是经过项目实战积累下来的
欢迎传播分享,必须保持原作者的信息,但禁止将该文档直接用于商业盈利。
本人自从几年前走上编程之路,一直致力于收集和总结出好用的框架和通用类库,不管是微软自己的还是第三方的只要实际项目中好用且可以解决实际问题那都会收集好,编写好文章和别人一起分享,这样自己学到了,别人也能学到知识,当今社会很需要知识的搬运工。
1.基本介绍
由于项目中需要用到各种压缩将文件进行压缩下载,减少网络的带宽,所以压缩是一个非常常见的功能,对于压缩微软自己也提供了一些类库
微软自带压缩类ZipArchive类,适合NET FrameWork4.5才可以使用
调用压缩软件命令执行压缩动作,这个就需要电脑本身安装压缩软件了
使用第三方的压缩dll文件,一般使用最多的是(ICSharpCode.SharpZiplib.dll),下载dll ICSharpCode.SharpZipLib.zip
2.实际项目
压缩单个文件,需要指定压缩等级
压缩单个文件夹,需要指定压缩等级
压缩多个文件或者多个文件夹
对压缩包进行加密【用的较少,实际情况也有】
2.1 压缩单个文件
写了两个方法,可以指定压缩等级,这样你的压缩包大小就不一样了
2.2 压缩单个文件夹
复制代码 代码如下:
public voID ZipDir(string dirToZip,string zipedfilename,int compressionLevel = 9)
2.3 压缩多个文件或者文件夹
复制代码 代码如下:
public bool ZipManyfilesOrDictorys(IEnumerable<string> folderOrfileList,string zipedfile,string password)
2.4 对压缩包进行加密
复制代码 代码如下:
public bool ZipManyfilesOrDictorys(IEnumerable<string> folderOrfileList,string password)
2.5 直接解压,无需密码
public voID UnZip(string zipfilePath,string unZipDir)
3.演示图
3.ZipHelper源码
//-------------------------------------------------------------------------------------// All Rights Reserved,copyright (C) 2016,ZTO,Ltd .//-------------------------------------------------------------------------------------using System;using System.Collections;using System.Collections.Generic;using System.IO;namespace ZTO.PicTest.UtilitIEs{ using ICSharpCode.SharpZiplib.Checksums; using ICSharpCode.SharpZiplib.Zip; /// <summary> /// Zip压缩帮助类 /// /// 修改纪录 /// /// 2015-09-16 版本:1.0 YangHenglian 创建主键,注意命名空间的排序。 /// 2016-5-7 YangHenglian增加了可以支持多个文件或者多个文件夹打包成一个zip文件 /// /// 版本:1.0 /// /// <author> /// <name>YangHenglian</name> /// <date>2015-09-16</date> /// </author> /// </summary> public class ZipHelper { /// <summary> /// 压缩文件夹 /// </summary> /// <param name="dirToZip"></param> /// <param name="zipedfilename"></param> /// <param name="compressionLevel">压缩率0(无压缩)9(压缩率最高)</param> public voID ZipDir(string dirToZip,int compressionLevel = 9) { if (Path.GetExtension(zipedfilename) != ".zip") { zipedfilename = zipedfilename + ".zip"; } using (var zipoutputstream = new ZipOutputStream(file.Create(zipedfilename))) { zipoutputstream.SetLevel(compressionLevel); Crc32 crc = new Crc32(); Hashtable fileList = GetAllFIEs(dirToZip); foreach (DictionaryEntry item in fileList) { fileStream fs = new fileStream(item.Key.ToString(),fileMode.Open,fileAccess.Read,fileShare.ReaDWrite); byte[] buffer = new byte[fs.Length]; fs.Read(buffer,buffer.Length); // ZipEntry entry = new ZipEntry(item.Key.ToString().Substring(dirToZip.Length + 1)); ZipEntry entry = new ZipEntry(Path.Getfilename(item.Key.ToString())) { DateTime = (DateTime) item.Value,Size = fs.Length }; fs.Close(); crc.reset(); crc.Update(buffer); entry.Crc = crc.Value; zipoutputstream.PutNextEntry(entry); zipoutputstream.Write(buffer,buffer.Length); } } } /// <summary> /// 获取所有文件 /// </summary> /// <returns></returns> public Hashtable GetAllFIEs(string dir) { Hashtable filesList = new Hashtable(); DirectoryInfo fileDire = new DirectoryInfo(dir); if (!fileDire.Exists) { throw new fileNotFoundException("目录:" + fileDire.Fullname + "没有找到!"); } GetAllDirfiles(fileDire,filesList); GetAllDirsfiles(fileDire.GetDirectorIEs(),filesList); return filesList; } /// <summary> /// 获取一个文件夹下的所有文件夹里的文件 /// </summary> /// <param name="dirs"></param> /// <param name="filesList"></param> public voID GetAllDirsfiles(IEnumerable<DirectoryInfo> dirs,Hashtable filesList) { foreach (DirectoryInfo dir in dirs) { foreach (fileInfo file in dir.Getfiles("*.*")) { filesList.Add(file.Fullname,file.LastWriteTime); } GetAllDirsfiles(dir.GetDirectorIEs(),filesList); } } /// <summary> /// 获取一个文件夹下的文件 /// </summary> /// <param name="dir">目录名称</param> /// <param name="filesList">文件列表Hasttable</param> public static voID GetAllDirfiles(DirectoryInfo dir,Hashtable filesList) { foreach (fileInfo file in dir.Getfiles("*.*")) { filesList.Add(file.Fullname,file.LastWriteTime); } } /// <summary> /// 功能:解压zip格式的文件。 /// </summary> /// <param name="zipfilePath">压缩文件路径</param> /// <param name="unZipDir">解压文件存放路径,为空时默认与压缩文件同一级目录下,跟压缩文件同名的文件夹</param> /// <returns>解压是否成功</returns> public voID UnZip(string zipfilePath,string unZipDir) { if (zipfilePath == string.Empty) { throw new Exception("压缩文件不能为空!"); } if (!file.Exists(zipfilePath)) { throw new fileNotFoundException("压缩文件不存在!"); } //解压文件夹为空时默认与压缩文件同一级目录下,跟压缩文件同名的文件夹 if (unZipDir == string.Empty) unZipDir = zipfilePath.Replace(Path.Getfilename(zipfilePath),Path.GetfilenameWithoutExtension(zipfilePath)); if (!unZipDir.EndsWith("/")) unZipDir += "/"; if (!Directory.Exists(unZipDir)) Directory.CreateDirectory(unZipDir); using (var s = new ZipinputStream(file.OpenRead(zipfilePath))) { ZipEntry theEntry; while ((theEntry = s.GetNextEntry()) != null) { string directoryname = Path.GetDirectoryname(theEntry.name); string filename = Path.Getfilename(theEntry.name); if (!string.IsNullOrEmpty(directoryname)) { Directory.CreateDirectory(unZipDir + directoryname); } if (directoryname != null && !directoryname.EndsWith("/")) { } if (filename != String.Empty) { using (fileStream streamWriter = file.Create(unZipDir + theEntry.name)) { int size; byte[] data = new byte[2048]; while (true) { size = s.Read(data,data.Length); if (size > 0) { streamWriter.Write(data,size); } else { break; } } } } } } } /// <summary> /// 压缩单个文件 /// </summary> /// <param name="filePath">被压缩的文件名称(包含文件路径),文件的全路径</param> /// <param name="zipedfilename">压缩后的文件名称(包含文件路径),保存的文件名称</param> /// <param name="compressionLevel">压缩率0(无压缩)到 9(压缩率最高)</param> public voID Zipfile(string filePath,int compressionLevel = 9) { // 如果文件没有找到,则报错 if (!file.Exists(filePath)) { throw new fileNotFoundException("文件:" + filePath + "没有找到!"); } // 如果压缩后名字为空就默认使用源文件名称作为压缩文件名称 if (string.IsNullOrEmpty(zipedfilename)) { string oldValue = Path.Getfilename(filePath); if (oldValue != null) { zipedfilename = filePath.Replace(oldValue,"") + Path.GetfilenameWithoutExtension(filePath) + ".zip"; } } // 如果压缩后的文件名称后缀名不是zip,就是加上zip,防止是一个乱码文件 if (Path.GetExtension(zipedfilename) != ".zip") { zipedfilename = zipedfilename + ".zip"; } // 如果指定位置目录不存在,创建该目录 C:\Users\yhl\Desktop\大汉三通 string zipedDir = zipedfilename.Substring(0,zipedfilename.LastIndexOf("\",StringComparison.Ordinal)); if (!Directory.Exists(zipedDir)) { Directory.CreateDirectory(zipedDir); } // 被压缩文件名称 string filename = filePath.Substring(filePath.LastIndexOf("\",StringComparison.Ordinal) + 1); var streamToZip = new fileStream(filePath,fileAccess.Read); var zipfile = file.Create(zipedfilename); var zipStream = new ZipOutputStream(zipfile); var zipEntry = new ZipEntry(filename); zipStream.PutNextEntry(zipEntry); zipStream.SetLevel(compressionLevel); var buffer = new byte[2048]; Int32 size = streamToZip.Read(buffer,buffer.Length); zipStream.Write(buffer,size); try { while (size < streamToZip.Length) { int sizeRead = streamToZip.Read(buffer,buffer.Length); zipStream.Write(buffer,sizeRead); size += sizeRead; } } finally { zipStream.Finish(); zipStream.Close(); streamToZip.Close(); } } /// <summary> /// 压缩单个文件 /// </summary> /// <param name="fileToZip">要进行压缩的文件名,全路径</param> /// <param name="zipedfile">压缩后生成的压缩文件名,全路径</param> public voID Zipfile(string fileToZip,string zipedfile) { // 如果文件没有找到,则报错 if (!file.Exists(fileToZip)) { throw new fileNotFoundException("指定要压缩的文件: " + fileToZip + " 不存在!"); } using (fileStream fileStream = file.OpenRead(fileToZip)) { byte[] buffer = new byte[fileStream.Length]; fileStream.Read(buffer,buffer.Length); fileStream.Close(); using (fileStream zipfile = file.Create(zipedfile)) { using (ZipOutputStream zipOutputStream = new ZipOutputStream(zipfile)) { // string filename = fileToZip.Substring(fileToZip.LastIndexOf("\") + 1); string filename = Path.Getfilename(fileToZip); var zipEntry = new ZipEntry(filename) { DateTime = DateTime.Now,IsUnicodeText = true }; zipOutputStream.PutNextEntry(zipEntry); zipOutputStream.SetLevel(5); zipOutputStream.Write(buffer,buffer.Length); zipOutputStream.Finish(); zipOutputStream.Close(); } } } } /// <summary> /// 压缩多个目录或文件 /// </summary> /// <param name="folderOrfileList">待压缩的文件夹或者文件,全路径格式,是一个集合</param> /// <param name="zipedfile">压缩后的文件名,全路径格式</param> /// <param name="password">压宿密码</param> /// <returns></returns> public bool ZipManyfilesOrDictorys(IEnumerable<string> folderOrfileList,string password) { bool res = true; using (var s = new ZipOutputStream(file.Create(zipedfile))) { s.SetLevel(6); if (!string.IsNullOrEmpty(password)) { s.Password = password; } foreach (string fileOrDir in folderOrfileList) { //是文件夹 if (Directory.Exists(fileOrDir)) { res = ZipfileDictory(fileOrDir,s,""); } else { //文件 res = ZipfileWithStream(fileOrDir,s); } } s.Finish(); s.Close(); return res; } } /// <summary> /// 带压缩流压缩单个文件 /// </summary> /// <param name="fileToZip">要进行压缩的文件名</param> /// <param name="zipStream"></param> /// <returns></returns> private bool ZipfileWithStream(string fileToZip,ZipOutputStream zipStream) { //如果文件没有找到,则报错 if (!file.Exists(fileToZip)) { throw new fileNotFoundException("指定要压缩的文件: " + fileToZip + " 不存在!"); } //fileStream fs = null; fileStream zipfile = null; ZipEntry zipEntry = null; bool res = true; try { zipfile = file.OpenRead(fileToZip); byte[] buffer = new byte[zipfile.Length]; zipfile.Read(buffer,buffer.Length); zipfile.Close(); zipEntry = new ZipEntry(Path.Getfilename(fileToZip)); zipStream.PutNextEntry(zipEntry); zipStream.Write(buffer,buffer.Length); } catch { res = false; } finally { if (zipEntry != null) { } if (zipfile != null) { zipfile.Close(); } GC.Collect(); GC.Collect(1); } return res; } /// <summary> /// 递归压缩文件夹方法 /// </summary> /// <param name="folderToZip"></param> /// <param name="s"></param> /// <param name="parentFoldername"></param> private bool ZipfileDictory(string folderToZip,ZipOutputStream s,string parentFoldername) { bool res = true; ZipEntry entry = null; fileStream fs = null; Crc32 crc = new Crc32(); try { //创建当前文件夹 entry = new ZipEntry(Path.Combine(parentFoldername,Path.Getfilename(folderToZip) + "/")); //加上 “/” 才会当成是文件夹创建 s.PutNextEntry(entry); s.Flush(); //先压缩文件,再递归压缩文件夹 var filenames = Directory.Getfiles(folderToZip); foreach (string file in filenames) { //打开压缩文件 fs = file.OpenRead(file); byte[] buffer = new byte[fs.Length]; fs.Read(buffer,buffer.Length); entry = new ZipEntry(Path.Combine(parentFoldername,Path.Getfilename(folderToZip) + "/" + Path.Getfilename(file))); entry.DateTime = DateTime.Now; entry.Size = fs.Length; fs.Close(); crc.reset(); crc.Update(buffer); entry.Crc = crc.Value; s.PutNextEntry(entry); s.Write(buffer,buffer.Length); } } catch { res = false; } finally { if (fs != null) { fs.Close(); } if (entry != null) { } GC.Collect(); GC.Collect(1); } var folders = Directory.GetDirectorIEs(folderToZip); foreach (string folder in folders) { if (!ZipfileDictory(folder,Path.Combine(parentFoldername,Path.Getfilename(folderToZip)))) { return false; } } return res; } }}
慢慢积累,你的这些代码都是你的财富,可以帮你提高工作效率,勤勤恳恳的干好每件事情,点滴积累,开心编程。
总结以上是内存溢出为你收集整理的C#中ZipHelper 压缩和解压帮助类全部内容,希望文章能够帮你解决C#中ZipHelper 压缩和解压帮助类所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)