源码网,源码论坛,源码之家,商业源码,游戏源码下载,discuz插件,棋牌源码下载,精品源码论坛

 找回密码
 立即注册
楼主: ttx9n

[ASP.NET] asp.NET中实现文件的压缩和解压(3种方式)

[复制链接]

7万

主题

861

回帖

32万

积分

论坛元老

Rank: 8Rank: 8

积分
329525
发表于 2016-11-22 16:25:32 | 显示全部楼层 |阅读模式
本篇文章主要介绍了asp.NET中实现文件的压缩和解压,这里整理了详细的代码,有需要的小伙伴可以参考下。

在.NET可以通过多种方式实现zip的压缩和解压:1、使用System.IO.Packaging;2、使用第三方类库;3、通过 System.IO.Compression 命名空间中新增的ZipArchive、ZipFile等类实现。

一、使用System.IO.Packaging压缩和解压

Package为一个抽象类,可用于将对象组织到定义的物理格式的单个实体中,从而实现可移植性与高效访问。ZIP 文件是Package的主物理格式。 其他Package实现可以使用其他物理格式(如 XML 文档、数据库或 Web 服务。与文件系统类似,在分层组织的文件夹和文件中引用 Package 中包含的项。虽然 Package 是抽象类,但 Package.Open 方法默认使用 ZipPackage 派生类。

System.IO.Packaging在WindowsBase.dll程序集下,使用时需要添加对WindowsBase的引用。

 1、将整个文件夹压缩成zip

 /// <summary>
  /// Add a folder along with its subfolders to a Package
  /// </summary>
  /// <param name="folderName">The folder to add</param>
  /// <param name="compressedFileName">The package to create</param>
  /// <param name="overrideExisting">Override exsisitng files</param>
  /// <returns></returns>
  static bool PackageFolder(string folderName, string compressedFileName, bool overrideExisting)
  {
   if (folderName.EndsWith(@"\"))
    folderName = folderName.Remove(folderName.Length - 1);
   bool result = false;
   if (!Directory.Exists(folderName))
   {
    return result;
   }

   if (!overrideExisting && File.Exists(compressedFileName))
   {
    return result;
   }
   try
   {
    using (Package package = Package.Open(compressedFileName, FileMode.Create))
    {
     var fileList = Directory.EnumerateFiles(folderName, "*", SearchOption.AllDirectories);
     foreach (string fileName in fileList)
     {
      
      //The path in the package is all of the subfolders after folderName
      string pathInPackage;
      pathInPackage = Path.GetDirectoryName(fileName).Replace(folderName, string.Empty) + "/" + Path.GetFileName(fileName);

      Uri partUriDocument = PackUriHelper.CreatePartUri(new Uri(pathInPackage, UriKind.Relative));
      PackagePart packagePartDocument = package.CreatePart(partUriDocument,"", CompressionOption.Maximum);
      using (FileStream fileStream = new FileStream(fileName, FileMode.Open, FileAccess.Read))
      {
       fileStream.CopyTo(packagePartDocument.GetStream());
      }
     }
    }
    result = true;
   }
   catch (Exception e)
   {
    throw new Exception("Error zipping folder " + folderName, e);
   }
   
   return result;
  }

2、将单个文件添加到zip文件中

 /// <summary>
  /// Compress a file into a ZIP archive as the container store
  /// </summary>
  /// <param name="fileName">The file to compress</param>
  /// <param name="compressedFileName">The archive file</param>
  /// <param name="overrideExisting">override existing file</param>
  /// <returns></returns>
  static bool PackageFile(string fileName, string compressedFileName, bool overrideExisting)
  {
   bool result = false;

   if (!File.Exists(fileName))
   {
    return result;
   }

   if (!overrideExisting && File.Exists(compressedFileName))
   {
    return result;
   }

   try
   {
    Uri partUriDocument = PackUriHelper.CreatePartUri(new Uri(Path.GetFileName(fileName), UriKind.Relative));
    
    using (Package package = Package.Open(compressedFileName, FileMode.OpenOrCreate))
    {
     if (package.PartExists(partUriDocument))
     {
      package.DeletePart(partUriDocument);
     }

     PackagePart packagePartDocument = package.CreatePart(partUriDocument, "", CompressionOption.Maximum);
     using (FileStream fileStream = new FileStream(fileName, FileMode.Open, FileAccess.Read))
     {
      fileStream.CopyTo(packagePartDocument.GetStream());
     }
    }
    result = true;
   }
   catch (Exception e)
   {
    throw new Exception("Error zipping file " + fileName, e);
   }
   
   return result;
  }

3、zip文件解压

/// <summary>
  /// Extract a container Zip. NOTE: container must be created as Open Packaging Conventions (OPC) specification
  /// </summary>
  /// <param name="folderName">The folder to extract the package to</param>
  /// <param name="compressedFileName">The package file</param>
  /// <param name="overrideExisting">override existing files</param>
  /// <returns></returns>
  static bool UncompressFile(string folderName, string compressedFileName, bool overrideExisting)
  {
   bool result = false;
   try
   {
    if (!File.Exists(compressedFileName))
    {
     return result;
    }

    DirectoryInfo directoryInfo = new DirectoryInfo(folderName);
    if (!directoryInfo.Exists)
     directoryInfo.Create();

    using (Package package = Package.Open(compressedFileName, FileMode.Open, FileAccess.Read))
    {
     foreach (PackagePart packagePart in package.GetParts())
     {
      ExtractPart(packagePart, folderName, overrideExisting);
     }
    }

    result = true;
   }
   catch (Exception e)
   {
    throw new Exception("Error unzipping file " + compressedFileName, e);
   }
   
   return result;
  }

  static void ExtractPart(PackagePart packagePart, string targetDirectory, bool overrideExisting)
  {
   string stringPart = targetDirectory + HttpUtility.UrlDecode(packagePart.Uri.ToString()).Replace('\\', '/');

   if (!Directory.Exists(Path.GetDirectoryName(stringPart)))
    Directory.CreateDirectory(Path.GetDirectoryName(stringPart));

   if (!overrideExisting && File.Exists(stringPart))
    return;
   using (FileStream fileStream = new FileStream(stringPart, FileMode.Create))
   {
    packagePart.GetStream().CopyTo(fileStream);
   }
  }

使用Package压缩文件会在zip文件自动生成[Content_Type].xml,用来描述zip文件解压支持的文件格式。

  <?xml version="1.0" encoding="utf-8" ?> 
<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types">
 <Default Extension="vsixmanifest" ContentType="text/xml" /> 
 <Default Extension="dll" ContentType="application/octet-stream" /> 
 <Default Extension="png" ContentType="application/octet-stream" /> 
 <Default Extension="txt" ContentType="text/plain" /> 
 <Default Extension="pkgdef" ContentType="text/plain" /> 
</Types>

同样,如果zip文件不包含[Content_Type].xml文件,或者[Content_Type].xml文件不包含所对应扩展名的描述(手动添加的[Content_Type].xml也是可以),将无法解压文件。

 二、使用第三方类库

zip的压缩和解压使用比较的有SharpZipLib和DotNetZip。

1、SharpZipLib,也称为“#ziplib”,基于GPL开源,支持Zip,GZip,Tar和BZip2的压缩和解压缩。

支持.NET 1.1,NET 2.0(3.5、4.0).

(1)zip压缩

 public static void Zip(string SrcFile, string DstFile, int BufferSize)
{
 FileStream fileStreamIn = new FileStream
 (SrcFile, FileMode.Open, FileAccess.Read);
 FileStream fileStreamOut = new FileStream
 (DstFile, FileMode.Create, FileAccess.Write);
 ZipOutputStream zipOutStream = new ZipOutputStream(fileStreamOut);
 byte[] buffer = new byte<buffersize />;
 ZipEntry entry = new ZipEntry(Path.GetFileName(SrcFile));
 zipOutStream.PutNextEntry(entry);
 int size;
 do
 {
  size = fileStreamIn.Read(buffer, 0, buffer.Length);
  zipOutStream.Write(buffer, 0, size);
 } while (size > 0);
 zipOutStream.Close();
 fileStreamOut.Close();
 fileStreamIn.Close();
}

(2)解压zip

  public static void UnZip(string SrcFile, string DstFile, int BufferSize)
{
 FileStream fileStreamIn = new FileStream
 (SrcFile, FileMode.Open, FileAccess.Read);
 ZipInputStream zipInStream = new ZipInputStream(fileStreamIn);
 ZipEntry entry = zipInStream.GetNextEntry();
 FileStream fileStreamOut = new FileStream
 (DstFile + @"\" + entry.Name, FileMode.Create, FileAccess.Write);
 int size;
 byte[] buffer = new byte<buffersize />;
 do
 {
  size = zipInStream.Read(buffer, 0, buffer.Length);
  fileStreamOut.Write(buffer, 0, size);
 } while (size > 0);
 zipInStream.Close();
 fileStreamOut.Close();
 fileStreamIn.Close();
}

2、DotNetLib,是基于”WS-PL”开源,使用比较简单

(1)压缩

  using (ZipFile zip = new ZipFile())
 {
 zip.AddFile("ReadMe.txt");
 zip.AddFile("7440-N49th.png");
 zip.AddFile("2008_Annual_Report.pdf");  
 zip.Save("Archive.zip");
 }

(2)解压

 private void MyExtract()
 {
  string zipToUnpack = "C1P3SML.zip";
  string unpackDirectory = "Extracted Files";
  using (ZipFile zip1 = ZipFile.Read(zipToUnpack))
  {
   // here, we extract every entry, but we could extract conditionally
   // based on entry name, size, date, checkbox status, etc. 
   foreach (ZipEntry e in zip1)
   {
   e.Extract(unpackDirectory, ExtractExistingFileAction.OverwriteSilently);
   }
  }
 }

三、在.NET 4.5使用ZipArchive、ZipFile等类压缩和解压

 static void Main(string[] args)
  {
   string ZipPath = @"c:\users\exampleuser\start.zip";
   string ExtractPath = @"c:\users\exampleuser\extract";
   string NewFile = @"c:\users\exampleuser\NewFile.txt";

   using (ZipArchive Archive = ZipFile.Open(ZipPath, ZipArchiveMode.Update))
   {
    Archive.CreateEntryFromFile(NewFile, "NewEntry.txt");
    Archive.ExtractToDirectory(ExtractPath);
   } 
  }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

回复

使用道具 举报

4

主题

2万

回帖

262

积分

中级会员

Rank: 3Rank: 3

积分
262
发表于 2022-9-3 03:35:46 | 显示全部楼层
很好,谢谢分享
回复 支持 反对

使用道具 举报

0

主题

1万

回帖

68

积分

注册会员

Rank: 2

积分
68
发表于 2022-9-4 10:59:15 | 显示全部楼层
天天源码社区。。。。
回复 支持 反对

使用道具 举报

0

主题

2万

回帖

115

积分

注册会员

Rank: 2

积分
115
发表于 2022-10-18 21:50:38 | 显示全部楼层
还有什么好东西没
回复 支持 反对

使用道具 举报

7

主题

2万

回帖

288

积分

中级会员

Rank: 3Rank: 3

积分
288
发表于 2022-11-11 13:48:22 | 显示全部楼层
的vgdsvsdvdsvdsvds
回复 支持 反对

使用道具 举报

0

主题

1万

回帖

0

积分

中级会员

Rank: 3Rank: 3

积分
0
发表于 2022-12-5 23:42:46 | 显示全部楼层
可以,看卡巴
回复 支持 反对

使用道具 举报

14

主题

1万

回帖

75

积分

注册会员

Rank: 2

积分
75
发表于 2023-8-23 12:16:42 | 显示全部楼层
看看怎么样再说
回复 支持 反对

使用道具 举报

2

主题

2万

回帖

69

积分

注册会员

Rank: 2

积分
69
发表于 2023-9-13 21:24:26 | 显示全部楼层
你们谁看了弄洒了可能
回复 支持 反对

使用道具 举报

2

主题

2万

回帖

99

积分

注册会员

Rank: 2

积分
99
发表于 2023-9-16 07:32:49 | 显示全部楼层
刷刷刷刷刷刷刷刷刷刷刷刷刷刷刷
回复 支持 反对

使用道具 举报

0

主题

2万

回帖

194

积分

注册会员

Rank: 2

积分
194
发表于 2023-12-3 23:20:50 | 显示全部楼层
看看看看看看看看看看看看看看看看看看看看看看看看看看看
回复 支持 反对

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

手机版|小黑屋|网站地图|源码论坛 ( 海外版 )

GMT+8, 2024-11-29 19:34 , Processed in 0.253125 second(s), 22 queries .

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表