C# ICSharpCode.SharpZipLib
C# ICSharpCode.SharpZipLib.dll文件压缩和解压功能类整理,上传文件或下载文件很常用
工作中我们很多时候需要进行对文件进行压缩,比较通用的压缩的dll就是ICSharpCode.SharpZipLib.dll,废话不多了,网上也有很多的资料,我将其最常用的两个函数整理了一下,提供了一个通用的类,这样在工作中可以快速的完成压缩和解压缩的动作哦
官网下载地址: http://www.icsharpcode.net/OpenSource/SharpZipLib/Download.aspx
1. 在项目中添加对ICSharpCode.SharpZipLib.dll的引用;
2. 在需要使用到ICSharpCode.SharpZipLib中定义的类的编码界面中将其导入(Imports)
![](https://common.cnblogs.com/images/copycode.gif)
1 using ICSharpCode.SharpZipLib.Zip;
2 using System;
3 using System.IO;
4
5 namespace ZTO.WayBill.Utilities
6 {
7 /// <summary>
8 /// 压缩类
9 /// http://www.cnblogs.com/kissdodog/p/3525295.html
10
11 /// </summary>
12 public class ZipHelper
13 {
14 /// <summary>
15 /// 压缩文件夹
16 /// </summary>
17 /// <param name="source">源目录</param>
18 /// <param name="s">ZipOutputStream对象</param>
19 public static void Compress(string source, ZipOutputStream s)
20 {
21 string[] filenames = Directory.GetFileSystemEntries(source);
22 foreach (string file in filenames)
23 {
24 if (Directory.Exists(file))
25 {
26 // 递归压缩子文件夹
27 Compress(file, s);
28 }
29 else
30 {
31 using (FileStream fs = File.OpenRead(file))
32 {
33 byte[] buffer = new byte[4 * 1024];
34 // 此处去掉盘符,如D:\123\1.txt 去掉D:
35 ZipEntry entry = new ZipEntry(file.Replace(Path.GetPathRoot(file), ""));
36 entry.DateTime = DateTime.Now;
37 s.PutNextEntry(entry);
38 int sourceBytes;
39 do
40 {
41 sourceBytes = fs.Read(buffer, 0, buffer.Length);
42 s.Write(buffer, 0, sourceBytes);
43 } while (sourceBytes > 0);
44 }
45 }
46 }
47 }
48
49 /// <summary>
50 /// 解压缩
51 /// </summary>
52 /// <param name="sourceFile">压缩包完整路径地址</param>
53 /// <param name="targetPath">解压路径是哪里</param>
54 /// <returns></returns>
55 public static bool Decompress(string sourceFile, string targetPath)
56 {
57 if (!File.Exists(sourceFile))
58 {
59 throw new FileNotFoundException(string.Format("未能找到文件 '{0}' ", sourceFile));
60 }
61 if (!Directory.Exists(targetPath))
62 {
63 Directory.CreateDirectory(targetPath);
64 }
65 using (var s = new ZipInputStream(File.OpenRead(sourceFile)))
66 {
67 ZipEntry theEntry;
68 while ((theEntry = s.GetNextEntry()) != null)
69 {
70 if (theEntry.IsDirectory)
71 {
72 continue;
73 }
74 string directorName = Path.Combine(targetPath, Path.GetDirectoryName(theEntry.Name));
75 string fileName = Path.Combine(directorName, Path.GetFileName(theEntry.Name));
76 if (!Directory.Exists(directorName))
77 {
78 Directory.CreateDirectory(directorName);
79 }
80 if (!String.IsNullOrEmpty(fileName))
81 {
82 using (FileStream streamWriter = File.Create(fileName))
83 {
84 int size = 4096;
85 byte[] data = new byte[size];
86 while (size > 0)
87 {
88 streamWriter.Write(data, 0, size);
89 size = s.Read(data, 0, data.Length);
90 }
91 }
92 }
93 }
94 }
95 return true;
96 }
97 }
98 }
![](https://common.cnblogs.com/images/copycode.gif)
C# ICSharpCode.SharpZipLib的更多相关文章
- ICSharpCode.SharpZipLib 压缩、解压文件 附源码
http://www.icsharpcode.net/opensource/sharpziplib/ 有SharpZiplib的最新版本,本文使用的版本为0.86.0.518,支持Zip, GZip, ...
- 使用NPOI读取Excel报错ICSharpCode.SharpZipLib.Zip.ZipException:Wrong Local header signature
写了一个小程序利用NPOI来读取Excel,弹出这样的报错: ICSharpCode.SharpZipLib.Zip.ZipException:Wrong Local header signature ...
- ICSharpCode.SharpZipLib.dll 移植WP
由于众所周知的原因. ICSharpCode.SharpZipLib.dll在Unity移植WP的时候出现诸多API不兼容,解决方案是在在Github上面找ICSharpCode.SharpZipLi ...
- C#文件或文件夹压缩和解压方法(通过ICSharpCode.SharpZipLib.dll)
我在网上收集一下文件的压缩和解压的方法,是通过ICSharpCode.SharpZipLib.dll 来实现的 一.介绍的目录 第一步:下载压缩和解压的 ICSharpCode.SharpZipLib ...
- C# 利用ICSharpCode.SharpZipLib实现在线加密压缩和解密解压缩
这里我们选用ICSharpCode.SharpZipLib这个类库来实现我们的需求. 下载地址:http://icsharpcode.github.io/SharpZipLib/ 1.单个或多个文件加 ...
- C#调用 ICSharpCode.SharpZipLib.Zip 实现解压缩功能公用类
最近想用个解压缩功能 从网上找了找 加自己修改,个人感觉还是比较好用的,直接上代码如下 using System; using System.Linq; using System.IO; using ...
- ICSharpCode.SharpZipLib
ICSharpCode.SharpZipLib 压缩.解压文件 附源码 http://www.icsharpcode.net/opensource/sharpziplib/ 有SharpZipli ...
- 未能加载文件或程序集“ICSharpCode.SharpZipLib, Version=0.86.0.518, Culture=n
这个可能是因为,缺少文件ICSharpCode.SharpZipLib.dll文件. 我从网上下载了个dll文件,放到根目录中自己好了.
- npoi与memcached中的ICSharpCode.SharpZipLib版本冲突的解决方案
项目中一直使用NPOI与memcached,一直相安无事,但是最近升级了npoi到最新版本,发生了ICSharpCode.SharpZipLib的版本冲突问题. 因为此前一直使用的是NPOI的1.x的 ...
- C#壓縮文件幫助類 使用ICSharpCode.SharpZipLib.dll
using ICSharpCode.SharpZipLib.Checksums; using ICSharpCode.SharpZipLib.Zip; using System; using Syst ...
随机推荐
- ueditor文本编辑器的使用
1,头部引用 <link href="ueditor/themes/default/css/ueditor.css" rel="stylesheet" t ...
- 假设synthesize省略,语义属性声明assign retain copy时间,为了实现自己的setter和getter方法
假设synthesize省略,而且我们自己实现setter和getter方法时,系统就不会生成相应的setter和getter方法,还有实例变量 1,当把语义特性声明为assign时,setter和g ...
- C#中的Virtual
在 C# 中,派生类可以包含与基类方法同名的方法. 基类方法必须定义为 virtual. 如果派生类中的方法前面没有 new 或 override 关键字,则编译器将发出警告,该方法将有如存在 new ...
- php+sqlite 最佳web服务器
1 wampserver 支持mysql.每次都启动mysql,可以手动停止.但是运行时有时会很慢. 放弃 2 APS绿色版(Apache+PHP+SQLite) 组件环境:Apache2.2. ...
- Oracle FGA审计记录的清理步骤
注意:本文为原创文章,转载请注明出处: http://blog.csdn.net/msdnchina/article/details/38435999 一.确认有哪些fga审计策略, 从select ...
- C++它tinyXML使用
tinyXML一个非常好的操作C++图书馆,文件不大,但方法非常丰富.和apache的Dom4j能够披靡啊! 习惯了使用java类库的我看到这么丰富的c++类库,非常高兴!它使用非常easy.仅仅须要 ...
- Twitter 新一代流处理工具——Heron 该纸币Storm Limitations
Twitter 新一代流处理工具--Heron 该纸币Storm Limitations (空格分隔): Streaming-Processing Storm Problems scalability ...
- maple 教程
1 初识计算机代数系统Maple 1.1 Maple简说 1980年9月, 加拿大Waterloo大学的符号计算机研究小组成立, 開始了符号计算在计算机上实现的研究项目, 数学软件Maple是这个项目 ...
- quick-cocos2d-x游戏开发【3】——display.newSprite创建向导
游戏嘛.没有图片没有图片可以称为你的游戏,所以,我们看一下使用quick如何创建精灵的方式. quick的api精灵族的创造仍然是非常具体的解释.因此,建立非常easy. display.newSpr ...
- Vim 基本配置和经常使用的命令
vim 优势和应用场景 vim 的优点纯文字编辑和 Linux 完美的融合提供了命令行.只能假设 ssh 至server进行操作,那么这样的情况就仅仅能使用 vim 了.vim 也是最为强大的通用文本 ...