C#使用ICSharpCode.SharpZipLib.dll進(jìn)行文件的壓縮與解壓功能
下面給大家介紹C#使用ICSharpCode.SharpZipLib.dll進(jìn)行文件的壓縮與解壓功能,具體代碼如下所示:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using ICSharpCode.SharpZipLib.Zip; using ICSharpCode.SharpZipLib.Checksums; using System.Security.Cryptography; namespace zip壓縮與解壓 { public class ZipHelper { /// <summary> /// 壓縮單個(gè)文件 /// </summary> /// <param name="fileToZip">需壓縮的文件名</param> /// <param name="zipFile">壓縮后的文件名(文件名都是絕對(duì)路徑)</param> /// <param name="level">壓縮等級(jí)(0-9)</param> /// <param name="password">壓縮密碼(解壓是需要的密碼)</param> public static void ZipFile(string fileToZip, string zipFile, int level = 5, string password = "123") { if (!File.Exists(fileToZip)) throw new FileNotFoundException("壓縮文件" + fileToZip + "不存在"); using (FileStream fs = File.OpenRead(fileToZip)) { fs.Position = 0;//設(shè)置流的起始位置 byte[] buffer = new byte[(int)fs.Length]; fs.Read(buffer, 0, buffer.Length);//讀取的時(shí)候設(shè)置Position,寫(xiě)入的時(shí)候不需要設(shè)置 fs.Close(); using (FileStream zfstram = File.Create(zipFile)) { using (ZipOutputStream zipstream = new ZipOutputStream(zfstram)) { zipstream.Password = md5(password);//設(shè)置屬性的時(shí)候在PutNextEntry函數(shù)之前 zipstream.SetLevel(level); string fileName = fileToZip.Substring(fileToZip.LastIndexOf('\\') + 1); ZipEntry entry = new ZipEntry(fileName); zipstream.PutNextEntry(entry); zipstream.Write(buffer, 0, buffer.Length); } } } } /// <summary> /// 壓縮多個(gè)文件目錄 /// </summary> /// <param name="dirname">需要壓縮的目錄</param> /// <param name="zipFile">壓縮后的文件名</param> /// <param name="level">壓縮等級(jí)</param> /// <param name="password">密碼</param> public static void ZipDir(string dirname, string zipFile, int level = 5, string password = "123") { ZipOutputStream zos = new ZipOutputStream(File.Create(zipFile)); zos.Password = md5(password); zos.SetLevel(level); addZipEntry(dirname, zos, dirname); zos.Finish(); zos.Close(); } /// <summary> /// 往壓縮文件里面添加Entry /// </summary> /// <param name="PathStr">文件路徑</param> /// <param name="zos">ZipOutputStream</param> /// <param name="BaseDirName">基礎(chǔ)目錄</param> private static void addZipEntry(string PathStr, ZipOutputStream zos, string BaseDirName) { DirectoryInfo dir = new DirectoryInfo(PathStr); foreach (FileSystemInfo item in dir.GetFileSystemInfos()) { if ((item.Attributes & FileAttributes.Directory) == FileAttributes.Directory)//如果是文件夾繼續(xù)遞歸 { addZipEntry(item.FullName, zos, BaseDirName); } else { FileInfo f_item = (FileInfo)item; using (FileStream fs = f_item.OpenRead()) { byte[] buffer = new byte[(int)fs.Length]; fs.Position = 0; fs.Read(buffer, 0, buffer.Length); fs.Close(); ZipEntry z_entry = new ZipEntry(item.FullName.Replace(BaseDirName, "")); zos.PutNextEntry(z_entry); zos.Write(buffer, 0, buffer.Length); } } } } /// <summary> /// 解壓多個(gè)文件目錄 /// </summary> /// <param name="zfile">壓縮文件絕對(duì)路徑</param> /// <param name="dirname">解壓文件目錄</param> /// <param name="password">密碼</param> public static void UnZip(string zfile, string dirname, string password) { if (!Directory.Exists(dirname)) Directory.CreateDirectory(dirname); using (ZipInputStream zis = new ZipInputStream(File.OpenRead(zfile))) { zis.Password = md5(password); ZipEntry entry; while ((entry = zis.GetNextEntry()) != null) { var strArr = entry.Name.Split('\\');//這邊判斷壓縮文件里面是否存在目錄,存在的話先創(chuàng)建目錄后繼續(xù)解壓 if (strArr.Length > 2) Directory.CreateDirectory(dirname + @"\" + strArr[1]); using (FileStream dir_fs = File.Create(dirname + entry.Name)) { int size = 1024 * 2; byte[] buffer = new byte[size]; while (true) { size = zis.Read(buffer, 0, buffer.Length); if (size > 0) dir_fs.Write(buffer, 0, size); else break; } } } } } private static string md5(string pwd) { var res = ""; MD5 md = MD5.Create(); byte[] s = md.ComputeHash(Encoding.Default.GetBytes(pwd)); for (int i = 0; i < s.Length; i++) res = res + s[i].ToString("X"); return res; } } }
調(diào)用函數(shù)如下:
static void Main(string[] args) { var str = @"\學(xué)籍導(dǎo)入模板.xls"; //var arr=str.Split('\\'); var filePath = @"D:\程序文件\VS2010學(xué)習(xí)\StudyProgram\zip壓縮與解壓\File\學(xué)籍導(dǎo)入模板.xls"; //ZipHelper.ZipFile(filePath, @"D:\程序文件\VS2010學(xué)習(xí)\StudyProgram\zip壓縮與解壓\File\test.zip", 6, "123"); var dirPath = @"D:\程序文件\VS2010學(xué)習(xí)\StudyProgram\zip壓縮與解壓"; //ZipHelper.ZipDir(dirPath + @"\File", dirPath + @"\File.zip", 6, "huage"); ZipHelper.UnZip(dirPath + @"\File.zip", dirPath + @"\test", "huage"); Console.ReadKey(); }
效果圖如下:
總結(jié)
以上所述是小編給大家介紹的C#使用ICSharpCode.SharpZipLib.dll進(jìn)行文件的壓縮與解壓功能,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)我們網(wǎng)站的支持!
上一篇:C# 通過(guò)反射初探ORM框架的實(shí)現(xiàn)原理(詳解)
欄 目:C#教程
下一篇:C#實(shí)現(xiàn)的二維數(shù)組排序算法示例
本文標(biāo)題:C#使用ICSharpCode.SharpZipLib.dll進(jìn)行文件的壓縮與解壓功能
本文地址:http://mengdiqiu.com.cn/a1/C_jiaocheng/5319.html
您可能感興趣的文章
- 01-10C#使用Dispose模式實(shí)現(xiàn)手動(dòng)對(duì)資源的釋放
- 01-10C#3.0使用EventLog類寫(xiě)Windows事件日志的方法
- 01-10C#使用windows服務(wù)開(kāi)啟應(yīng)用程序的方法
- 01-10c# ArrayList的使用方法小總結(jié)
- 01-10C#使用ADO.Net部件來(lái)訪問(wèn)Access數(shù)據(jù)庫(kù)的方法
- 01-10C#使用Mutex簡(jiǎn)單實(shí)現(xiàn)程序單實(shí)例運(yùn)行的方法
- 01-10使用Nopcommerce為商城添加滿XX減XX優(yōu)惠券功能
- 01-10C#中yield用法使用說(shuō)明
- 01-10C#編程和Visual Studio使用技巧(下)
- 01-10C#編程和Visual Studio使用技巧(上)


閱讀排行
- 1C語(yǔ)言 while語(yǔ)句的用法詳解
- 2java 實(shí)現(xiàn)簡(jiǎn)單圣誕樹(shù)的示例代碼(圣誕
- 3利用C語(yǔ)言實(shí)現(xiàn)“百馬百擔(dān)”問(wèn)題方法
- 4C語(yǔ)言中計(jì)算正弦的相關(guān)函數(shù)總結(jié)
- 5c語(yǔ)言計(jì)算三角形面積代碼
- 6什么是 WSH(腳本宿主)的詳細(xì)解釋
- 7C++ 中隨機(jī)函數(shù)random函數(shù)的使用方法
- 8正則表達(dá)式匹配各種特殊字符
- 9C語(yǔ)言十進(jìn)制轉(zhuǎn)二進(jìn)制代碼實(shí)例
- 10C語(yǔ)言查找數(shù)組里數(shù)字重復(fù)次數(shù)的方法
本欄相關(guān)
- 01-10C#通過(guò)反射獲取當(dāng)前工程中所有窗體并
- 01-10關(guān)于ASP網(wǎng)頁(yè)無(wú)法打開(kāi)的解決方案
- 01-10WinForm限制窗體不能移到屏幕外的方法
- 01-10WinForm繪制圓角的方法
- 01-10C#實(shí)現(xiàn)txt定位指定行完整實(shí)例
- 01-10WinForm實(shí)現(xiàn)仿視頻播放器左下角滾動(dòng)新
- 01-10C#停止線程的方法
- 01-10C#實(shí)現(xiàn)清空回收站的方法
- 01-10C#通過(guò)重寫(xiě)Panel改變邊框顏色與寬度的
- 01-10C#實(shí)現(xiàn)讀取注冊(cè)表監(jiān)控當(dāng)前操作系統(tǒng)已
隨機(jī)閱讀
- 08-05dedecms(織夢(mèng))副欄目數(shù)量限制代碼修改
- 08-05織夢(mèng)dedecms什么時(shí)候用欄目交叉功能?
- 01-11Mac OSX 打開(kāi)原生自帶讀寫(xiě)NTFS功能(圖文
- 04-02jquery與jsp,用jquery
- 01-10SublimeText編譯C開(kāi)發(fā)環(huán)境設(shè)置
- 01-10使用C語(yǔ)言求解撲克牌的順子及n個(gè)骰子
- 01-11ajax實(shí)現(xiàn)頁(yè)面的局部加載
- 08-05DEDE織夢(mèng)data目錄下的sessions文件夾有什
- 01-10C#中split用法實(shí)例總結(jié)
- 01-10delphi制作wav文件的方法