程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C# 壓縮文件,

C# 壓縮文件,

編輯:C#入門知識

C# 壓縮文件,


   最近悟出來一個道理,在這兒分享給大家:學歷代表你的過去,能力代表你的現在,學習代表你的將來。

   十年河東十年河西,莫欺少年窮。 

   學無止境,精益求精

   上一節講述了C# WebApi傳參之Post請求-AJAX

   本節探討C#壓縮文件的方法,直接上代碼

   如下

 public class ZipUtility
    {
        /// <summary>  
        /// 所有文件緩存  
        /// </summary>  
        List<string> files = new List<string>();

        /// <summary>  
        /// 所有空目錄緩存  
        /// </summary>  
        List<string> paths = new List<string>();

        /// <summary>  
        /// 壓縮單個文件  
        /// </summary>  
        /// <param name="fileToZip">要壓縮的文件</param>  
        /// <param name="zipedFile">壓縮後的文件全名</param>  
        /// <param name="compressionLevel">壓縮程度,范圍0-9,數值越大,壓縮程序越高</param>  
        /// <param name="blockSize">分塊大小</param>  
        public void ZipFile(string fileToZip, string zipedFile, int compressionLevel, int blockSize)
        {
            if (!System.IO.File.Exists(fileToZip))//如果文件沒有找到,則報錯  
            {
                throw new FileNotFoundException("The specified file " + fileToZip + " could not be found. Zipping aborderd");
            }

            FileStream streamToZip = new FileStream(fileToZip, FileMode.Open, FileAccess.Read);
            FileStream zipFile = File.Create(zipedFile);
            ZipOutputStream zipStream = new ZipOutputStream(zipFile);
            ZipEntry zipEntry = new ZipEntry(fileToZip);
            zipStream.PutNextEntry(zipEntry);
            zipStream.SetLevel(compressionLevel);
            byte[] buffer = new byte[blockSize];
            int size = streamToZip.Read(buffer, 0, buffer.Length);
            zipStream.Write(buffer, 0, size);

            try
            {
                while (size < streamToZip.Length)
                {
                    int sizeRead = streamToZip.Read(buffer, 0, buffer.Length);
                    zipStream.Write(buffer, 0, sizeRead);
                    size += sizeRead;
                }
            }
            catch (Exception ex)
            {
                GC.Collect();
                throw ex;
            }

            zipStream.Finish();
            zipStream.Close();
            streamToZip.Close();
            GC.Collect();
        }

        /// <summary>  
        /// 壓縮目錄(包括子目錄及所有文件)  
        /// </summary>  
        /// <param name="rootPath">要壓縮的根目錄</param>  
        /// <param name="destinationPath">保存路徑</param>  
        /// <param name="compressLevel">壓縮程度,范圍0-9,數值越大,壓縮程序越高</param>  
        public void ZipFileFromDirectory(string rootPath, string destinationPath, int compressLevel)
        {
            GetAllDirectories(rootPath);

            /* while (rootPath.LastIndexOf("\\") + 1 == rootPath.Length)//檢查路徑是否以"\"結尾 
            { 
 
            rootPath = rootPath.Substring(0, rootPath.Length - 1);//如果是則去掉末尾的"\" 
 
            } 
            */
            //string rootMark = rootPath.Substring(0, rootPath.LastIndexOf("\\") + 1);//得到當前路徑的位置,以備壓縮時將所壓縮內容轉變成相對路徑。  
            string rootMark = rootPath + "\\";//得到當前路徑的位置,以備壓縮時將所壓縮內容轉變成相對路徑。  
            Crc32 crc = new Crc32();
            ZipOutputStream outPutStream = new ZipOutputStream(File.Create(destinationPath));
            outPutStream.SetLevel(compressLevel); // 0 - store only to 9 - means best compression  
            foreach (string file in files)
            {
                FileStream fileStream = File.OpenRead(file);//打開壓縮文件  
                byte[] buffer = new byte[fileStream.Length];
                fileStream.Read(buffer, 0, buffer.Length);
                ZipEntry entry = new ZipEntry(file.Replace(rootMark, string.Empty));
                entry.DateTime = DateTime.Now;
 
                entry.Size = fileStream.Length;
                fileStream.Close();
                crc.Reset();
                crc.Update(buffer);
                entry.Crc = crc.Value;
                outPutStream.PutNextEntry(entry);
                outPutStream.Write(buffer, 0, buffer.Length);
            }

            this.files.Clear();

            foreach (string emptyPath in paths)
            {
                ZipEntry entry = new ZipEntry(emptyPath.Replace(rootMark, string.Empty) + "/");
                outPutStream.PutNextEntry(entry);
            }

            this.paths.Clear();
            outPutStream.Finish();
            outPutStream.Close();
            GC.Collect();
        }

        /// <summary>  
        /// 取得目錄下所有文件及文件夾,分別存入files及paths  
        /// </summary>  
        /// <param name="rootPath">根目錄</param>  
        private void GetAllDirectories(string rootPath)
        {
            string[] subPaths = Directory.GetDirectories(rootPath);//得到所有子目錄  
            foreach (string path in subPaths)
            {
                GetAllDirectories(path);//對每一個字目錄做與根目錄相同的操作:即找到子目錄並將當前目錄的文件名存入List  
            }
            string[] files = Directory.GetFiles(rootPath);
            foreach (string file in files)
            {
                this.files.Add(file);//將當前目錄中的所有文件全名存入文件List  
            }
            if (subPaths.Length == files.Length && files.Length == 0)//如果是空目錄  
            {
                this.paths.Add(rootPath);//記錄空目錄  
            }
        }

        /// <summary>  
        /// 解壓縮文件(壓縮文件中含有子目錄)  
        /// </summary>  
        /// <param name="zipfilepath">待解壓縮的文件路徑</param>  
        /// <param name="unzippath">解壓縮到指定目錄</param>  
        /// <returns>解壓後的文件列表</returns>  
        public List<string> UnZip(string zipfilepath, string unzippath)
        {
            //解壓出來的文件列表  
            List<string> unzipFiles = new List<string>();

            //檢查輸出目錄是否以“\\”結尾  
            if (unzippath.EndsWith("\\") == false || unzippath.EndsWith(":\\") == false)
            {
                unzippath += "\\";
            }

            ZipInputStream s = new ZipInputStream(File.OpenRead(zipfilepath));
            ZipEntry theEntry;
            while ((theEntry = s.GetNextEntry()) != null)
            {
                string directoryName = Path.GetDirectoryName(unzippath);
                string fileName = Path.GetFileName(theEntry.Name);

                //生成解壓目錄【用戶解壓到硬盤根目錄時,不需要創建】  
                if (!string.IsNullOrEmpty(directoryName))
                {
                    Directory.CreateDirectory(directoryName);
                }

                if (fileName != String.Empty)
                {
                    //如果文件的壓縮後大小為0那麼說明這個文件是空的,因此不需要進行讀出寫入  
                    if (theEntry.CompressedSize == 0)
                        continue;
                    //解壓文件到指定的目錄  
                    directoryName = Path.GetDirectoryName(unzippath + theEntry.Name);
                    //建立下面的目錄和子目錄  
                    Directory.CreateDirectory(directoryName);

                    //記錄導出的文件  
                    unzipFiles.Add(unzippath + theEntry.Name);

                    FileStream streamWriter = File.Create(unzippath + theEntry.Name);

                    int size = 2048;
                    byte[] data = new byte[2048];
                    while (true)
                    {
                        size = s.Read(data, 0, data.Length);
                        if (size > 0)
                        {
                            streamWriter.Write(data, 0, size);
                        }
                        else
                        {
                            break;
                        }
                    }
                    streamWriter.Close();
                }
            }
            s.Close();
            GC.Collect();
            return unzipFiles;
        }

        public string GetZipFileExtention(string fileFullName)
        {
            int index = fileFullName.LastIndexOf(".");
            if (index <= 0)
            {
                throw new Exception("The source package file is not a compress file");
            }

            //extension string
            string ext = fileFullName.Substring(index);

            if (ext == ".rar" || ext == ".zip")
            {
                return ext;
            }
            else
            {
                throw new Exception("The source package file is not a compress file");
            }
        }
    }

   上述代碼便是壓縮文件的方法,我的測試結果如下:

   

   這是項目源文件,我要把:高效程序員的45個習慣壓縮.pdf 文件進行壓縮,由圖可知,確實壓縮成了:高效程序員的45個習慣壓縮.zip 但是當你嘗試去解壓這個.zip文件後,你會發現解壓後得到的文件夾中包含N+1層文件夾,最後的一層文件夾中能夠找到我壓縮的pdf文件,這點匪夷所思,有興趣的小虎斑可以把你們的見解貼在下面的評論上,供大家參考,同時也為LZ提供個思路,謝謝!

   我示例的代碼如下:

  public ActionResult Index()
        {
            C2Global.Architect.Common.ZipUtility zip = new C2Global.Architect.Common.ZipUtility();
            zip.ZipFile(Server.MapPath("~/file/高效程序員的45個習慣.pdf"), Server.MapPath("~/file/高效程序員的45個習慣.zip"), 5, 10);
            return View();
        }

   程序聲明:本段程序需要引用一個dll文件,這個dll文件的全名叫做:ICSharpCode.SharpZipLib.dll 小虎斑們可自行下載

   

   大家也可嘗試用這個鏈接進行下載:http://files.cnblogs.com/files/chenwolong/ICSharpCode.SharpZipLib.zip  這是我上傳至博客園的,應該可以下載,支持Net4.5框架

   關於:解壓後得到的文件夾中包含N+1層文件夾的問題,歡迎大家指正,討論,謝謝!

   @陳臥龍的博客

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved