C#实现的文件压缩和解压缩类

本文实例讲述了C#实现的文件压缩和解压缩类。分享给大家供大家参考。具体分析如下:

这个C#代码包含了几个类,封装了文件压缩和解压缩常用的方法,包括直接通过代码进行压缩,也有调用winrar对文件进行压缩的

using System;
using System.IO;
using System.Diagnostics;
using Microsoft.Win32;
using ICSharpCode.SharpZipLib.Checksums;
using ICSharpCode.SharpZipLib.Zip;
///压缩、解压缩类
namespace DotNet.Utilities
{
  public class SharpZip
  {
    public SharpZip()
    { }
    /// <summary>
    /// 压缩
    /// </summary>
    /// <param name="filename"> 压缩后的文件名(包含物理路径)</param>
    /// <param name="directory">待压缩的文件夹(包含物理路径)</param>
    public static void PackFiles(string filename, string directory)
    {
      try
      {
        FastZip fz = new FastZip();
        fz.CreateEmptyDirectories = true;
        fz.CreateZip(filename, directory, true, "");
        fz = null;
      }
      catch (Exception)
      {
        throw;
      }
    }
    /// <summary>
    /// 解压缩
    /// </summary>
    /// <param name="file">待解压文件名(包含物理路径)</param>
    /// <param name="dir"> 解压到哪个目录中(包含物理路径)</param>
    public static bool UnpackFiles(string file, string dir)
    {
      try
      {
        if (!Directory.Exists(dir))
        {
          Directory.CreateDirectory(dir);
        }
        ZipInputStream s = new ZipInputStream(File.OpenRead(file));
        ZipEntry theEntry;
        while ((theEntry = s.GetNextEntry()) != null)
        {
          string directoryName = Path.GetDirectoryName(theEntry.Name);
          string fileName = Path.GetFileName(theEntry.Name);
          if (directoryName != String.Empty)
          {
            Directory.CreateDirectory(dir + directoryName);
          }
          if (fileName != String.Empty)
          {
            FileStream streamWriter = File.Create(dir + 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();
        return true;
      }
      catch (Exception)
      {
        throw;
      }
    }
  }
  public class ClassZip
  {
    #region 私有方法
    /// <summary>
    /// 递归压缩文件夹方法
    /// </summary>
    private static bool ZipFileDictory(string FolderToZip, ZipOutputStream s, string ParentFolderName)
    {
      bool res = true;
      string[] folders, filenames;
      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();
        filenames = Directory.GetFiles(FolderToZip);
        foreach (string file in filenames)
        {
          fs = File.OpenRead(file);
          byte[] buffer = new byte[fs.Length];
          fs.Read(buffer, 0, 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, 0, buffer.Length);
        }
      }
      catch
      {
        res = false;
      }
      finally
      {
        if (fs != null)
        {
          fs.Close();
          fs = null;
        }
        if (entry != null)
        {
          entry = null;
        }
        GC.Collect();
        GC.Collect(1);
      }
      folders = Directory.GetDirectories(FolderToZip);
      foreach (string folder in folders)
      {
        if (!ZipFileDictory(folder, s, Path.Combine(ParentFolderName, Path.GetFileName(FolderToZip))))
        {
          return false;
        }
      }
      return res;
    }
    /// <summary>
    /// 压缩目录
    /// </summary>
    /// <param name="FolderToZip">待压缩的文件夹,全路径格式</param>
    /// <param name="ZipedFile">压缩后的文件名,全路径格式</param>
    private static bool ZipFileDictory(string FolderToZip, string ZipedFile, int level)
    {
      bool res;
      if (!Directory.Exists(FolderToZip))
      {
        return false;
      }
      ZipOutputStream s = new ZipOutputStream(File.Create(ZipedFile));
      s.SetLevel(level);
      res = ZipFileDictory(FolderToZip, s, "");
      s.Finish();
      s.Close();
      return res;
    }
    /// <summary>
    /// 压缩文件
    /// </summary>
    /// <param name="FileToZip">要进行压缩的文件名</param>
    /// <param name="ZipedFile">压缩后生成的压缩文件名</param>
    private static bool ZipFile(string FileToZip, string ZipedFile, int level)
    {
      if (!File.Exists(FileToZip))
      {
        throw new System.IO.FileNotFoundException("指定要压缩的文件: " + FileToZip + " 不存在!");
      }
      FileStream ZipFile = null;
      ZipOutputStream ZipStream = null;
      ZipEntry ZipEntry = null;
      bool res = true;
      try
      {
        ZipFile = File.OpenRead(FileToZip);
        byte[] buffer = new byte[ZipFile.Length];
        ZipFile.Read(buffer, 0, buffer.Length);
        ZipFile.Close();

        ZipFile = File.Create(ZipedFile);
        ZipStream = new ZipOutputStream(ZipFile);
        ZipEntry = new ZipEntry(Path.GetFileName(FileToZip));
        ZipStream.PutNextEntry(ZipEntry);
        ZipStream.SetLevel(level);

        ZipStream.Write(buffer, 0, buffer.Length);
      }
      catch
      {
        res = false;
      }
      finally
      {
        if (ZipEntry != null)
        {
          ZipEntry = null;
        }
        if (ZipStream != null)
        {
          ZipStream.Finish();
          ZipStream.Close();
        }
        if (ZipFile != null)
        {
          ZipFile.Close();
          ZipFile = null;
        }
        GC.Collect();
        GC.Collect(1);
      }
      return res;
    }
    #endregion
    /// <summary>
    /// 压缩
    /// </summary>
    /// <param name="FileToZip">待压缩的文件目录</param>
    /// <param name="ZipedFile">生成的目标文件</param>
    /// <param name="level">6</param>
    public static bool Zip(String FileToZip, String ZipedFile, int level)
    {
      if (Directory.Exists(FileToZip))
      {
        return ZipFileDictory(FileToZip, ZipedFile, level);
      }
      else if (File.Exists(FileToZip))
      {
        return ZipFile(FileToZip, ZipedFile, level);
      }
      else
      {
        return false;
      }
    }
    /// <summary>
    /// 解压
    /// </summary>
    /// <param name="FileToUpZip">待解压的文件</param>
    /// <param name="ZipedFolder">解压目标存放目录</param>
    public static void UnZip(string FileToUpZip, string ZipedFolder)
    {
      if (!File.Exists(FileToUpZip))
      {
        return;
      }
      if (!Directory.Exists(ZipedFolder))
      {
        Directory.CreateDirectory(ZipedFolder);
      }
      ZipInputStream s = null;
      ZipEntry theEntry = null;
      string fileName;
      FileStream streamWriter = null;
      try
      {
        s = new ZipInputStream(File.OpenRead(FileToUpZip));
        while ((theEntry = s.GetNextEntry()) != null)
        {
          if (theEntry.Name != String.Empty)
          {
            fileName = Path.Combine(ZipedFolder, theEntry.Name);
            if (fileName.EndsWith("/") || fileName.EndsWith("\\"))
            {
              Directory.CreateDirectory(fileName);
              continue;
            }
            streamWriter = File.Create(fileName);
            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;
              }
            }
          }
        }
      }
      finally
      {
        if (streamWriter != null)
        {
          streamWriter.Close();
          streamWriter = null;
        }
        if (theEntry != null)
        {
          theEntry = null;
        }
        if (s != null)
        {
          s.Close();
          s = null;
        }
        GC.Collect();
        GC.Collect(1);
      }
    }
  }
  public class ZipHelper
  {
    #region 私有变量
    String the_rar;
    RegistryKey the_Reg;
    Object the_Obj;
    String the_Info;
    ProcessStartInfo the_StartInfo;
    Process the_Process;
    #endregion
    /// <summary>
    /// 压缩
    /// </summary>
    /// <param name="zipname">要解压的文件名</param>
    /// <param name="zippath">要压缩的文件目录</param>
    /// <param name="dirpath">初始目录</param>
    public void EnZip(string zipname, string zippath, string dirpath)
    {
      try
      {
        the_Reg = Registry.ClassesRoot.OpenSubKey(@"Applications\WinRAR.exe\Shell\Open\Command");
        the_Obj = the_Reg.GetValue("");
        the_rar = the_Obj.ToString();
        the_Reg.Close();
        the_rar = the_rar.Substring(1, the_rar.Length - 7);
        the_Info = " a  " + zipname + " " + zippath;
        the_StartInfo = new ProcessStartInfo();
        the_StartInfo.FileName = the_rar;
        the_StartInfo.Arguments = the_Info;
        the_StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
        the_StartInfo.WorkingDirectory = dirpath;
        the_Process = new Process();
        the_Process.StartInfo = the_StartInfo;
        the_Process.Start();
      }
      catch (Exception ex)
      {
        throw new Exception(ex.Message);
      }
    }
    /// <summary>
    /// 解压缩
    /// </summary>
    /// <param name="zipname">要解压的文件名</param>
    /// <param name="zippath">要解压的文件路径</param>
    public void DeZip(string zipname, string zippath)
    {
      try
      {
        the_Reg = Registry.ClassesRoot.OpenSubKey(@"Applications\WinRar.exe\Shell\Open\Command");
        the_Obj = the_Reg.GetValue("");
        the_rar = the_Obj.ToString();
        the_Reg.Close();
        the_rar = the_rar.Substring(1, the_rar.Length - 7);
        the_Info = " X " + zipname + " " + zippath;
        the_StartInfo = new ProcessStartInfo();
        the_StartInfo.FileName = the_rar;
        the_StartInfo.Arguments = the_Info;
        the_StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
        the_Process = new Process();
        the_Process.StartInfo = the_StartInfo;
        the_Process.Start();
      }
      catch (Exception ex)
      {
        throw new Exception(ex.Message);
      }
    }
  }
}

希望本文所述对大家的C#程序设计有所帮助。

(0)

相关推荐

  • C#实现GZip压缩和解压缩入门实例

    主要是因为GZipStream的构造函数中第一个需要传入一个Stream,第二个是指定操作方式:压缩还是解压缩. 当时的疑问点主要有: 1.我传入的Stream是包含未压缩数据的Stream吗?2.我解压时是从一个压缩流中读取数据后再用GZipStream解压吗? 出现以上两点疑问,完全是我将GZipStream的用法理解反了. 其实GZipStream里面存的是已经压缩过的数据流,传入的Stream是作为基础Stream传入,如果要压缩,那你就可以传一个空的Stream进去,如果要解压,就将包

  • C#实现rar压缩与解压缩文件的方法

    本文实例讲述了C#实现rar压缩与解压缩文件的方法.分享给大家供大家参考.具体分析如下: 此程序利用 WinRAR 程序对文件进行压缩,命令行语法可参考WinRAR中文帮助. /// 利用 WinRAR 进行压缩 /// </summary> /// <param name="path">将要被压缩的文件夹(绝对路径)</param> /// <param name="rarPath">压缩后的 .rar 的存放目录(

  • asp.net C#实现解压缩文件的方法

    本文实例讲述了asp.net C#实现解压缩文件的方法.一共给大家介绍了三段代码,一个是简单的解压缩单个zip文件,后一个可以解压批量的大量的但需要调用ICSharpCode.SharpZipLib.dll类了,最后一个比较实例可压缩也可以解压缩了分享给大家供大家参考.具体如下: 解压缩单个文件: 复制代码 代码如下: using System.IO; using System.IO.Compression; string sourceFile=@"D:2.zip"; string d

  • C#使用DeflateStream解压缩数据文件的方法

    本文实例讲述了C#使用DeflateStream解压缩数据文件的方法.分享给大家供大家参考.具体分析如下: DeflateStream方法用于从一个流中读取数据,并写入到另一个流.DeflateStream不写入数据到其它类型的资源,比如文件或者内存. DeflateStream在写入另一个流的时候,它会对数据进行压缩和解压缩. 使用DEFLATE压缩数据文件的一般过程: 打开一个现有的文件  打开/创建输出文件  创建减缩对象  逐字节读取源文件,并把它传递给DEFLATE对象  使用defl

  • C#使用WinRar命令进行压缩和解压缩操作的实现方法

    本文实例讲述了C#使用WinRar命令进行压缩和解压缩操作的实现方法.分享给大家供大家参考,具体如下: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Diagnostics; using System.IO; public partial c

  • C# 利用ICSharpCode.SharpZipLib实现在线压缩和解压缩

    压缩包制作也是很多项目中需要用到的功能.比如有大量的文件(假设有10000个)需要上传,1个1个的上传似乎不太靠谱(靠,那得传到什么时候啊?),这时我们可以制作一个压缩包zip,直接传这个文件到服务器端,然后在服务器目录解压,释放里面的文件. 这里我们选用ICSharpCode.SharpZipLib这个类库来实现我们的需求. 下载地址:http://icsharpcode.github.io/SharpZipLib/ 该组件支持.NET 1.1, .NET 2.0 (3.5, 4.0), .N

  • Windows系统中C#调用WinRAR来压缩和解压缩文件的方法

    过程说明都在注释里,我们直接来看代码: 压缩: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using ICSharpCode.SharpZipLib.Zip; using System.Diagnostics; public class winrar { #region 压缩文件 /// <summary> /// 压缩文件 ///

  • C#文件流进行压缩和解压缩的方法

    本文实例讲述了C#文件流进行压缩和解压缩的方法.分享给大家供大家参考.具体实现方法如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.IO; using System.IO.Compression; using System.Linq; using System.Text; usi

  • C#中使用WinRAR实现加密压缩及解压缩文件

    本次示例主要实现: 1.压缩文件夹及其下文件 2.压缩文件夹下文件 3.压缩文件夹及其下文件为rar 还是 zip 4.解压缩 5.加密压缩及解加密压缩 ----------- 示例代码如下: protected void Button1_Click(object sender, EventArgs e) { string strtxtPath = "C://freezip//free.txt"; string strzipPath = "C://freezip//free.

  • c#调用winrar解压缩文件代码分享

    复制代码 代码如下: using Microsoft.Win32;using System.Diagnostics;压缩string the_rar;RegistryKey the_Reg;object the_Obj;string the_Info;ProcessStartInfo the_StartInfo;Process the_Process;try{the_Reg = Registry.ClassesRoot.OpenSubKey(@"Applications\WinRAR.exe\S

  • C#使用GZipStream解压缩数据文件的方法

    本文实例讲述了C#使用GZipStream解压缩数据文件的方法.分享给大家供大家参考.具体分析如下: GZipStream用于从一个流读取数据写入到另一个流,GZipStream不能写入到其它的资源,比如文件或者内存,只能从流到流. GZipStream使用的一般流程如下: 打开一个现有的文件  打开/创建输出文件  创建GZipStream对象  逐字节读源文件,并把它传递到GZipStream  使用GZipStream写入到输出文件流 String sourcefilename = FIL

  • C#自定义字符串压缩和解压缩的方法

    本文实例讲述了C#自定义字符串压缩和解压缩的方法.分享给大家供大家参考.具体如下: class ZipLib { public static string Zip(string value) { //Transform string into byte[] byte[] byteArray = new byte[value.Length]; int indexBA = 0; foreach (char item in value.ToCharArray()) { byteArray[indexB

  • C#实现压缩和解压缩的方法示例【Gzip和Zip方式】

    本文实例讲述了C#实现压缩和解压缩的方法.分享给大家供大家参考,具体如下: 使用ICSharpCode.SharpZipLib.dll来压缩/解压(压缩效率比GZip要高一点) public static class ZipUtil { /// <summary> /// 压缩 /// </summary> /// <param name="param"></param> /// <returns></returns&g

随机推荐