C#实现文件压缩与解压的方法示例【ZIP格式】
作者:Gary Zhang 时间:2021-12-31 23:25:20
本文实例讲述了C#实现文件压缩与解压的方法。分享给大家供大家参考,具体如下:
在企业开发过程中经常会遇到文件的压缩与解压,虽然网上很多流行的压缩文件格式都是RAR的,但是由于RAR不是一个开放的标准,因此ZIP成了更多人的选择。如果你不想自己开发的话可以选择开源的项目,比如SharpZipLib就是一个不错的选择。
组件的使用比较简单,请参照下面的代码。点击下载项目源码。
/*
* Gary Zhang -- cbcye@live.com
* www.cbcye.com
* www.quicklearn.cn
* cbcye.cnblogs.com
*/
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using ICSharpCode.SharpZipLib.Zip;
using System.Diagnostics;
using ICSharpCode.SharpZipLib.Core;
namespace TestConsole
{
class Program
{
static void Main()
{
//CreateZipFile(@"d:\", @"d:\a.zip");
UnZipFile(@"d:\a.zip");
Console.Read();
}
private static void CreateZipFile(string filesPath, string zipFilePath)
{
if (!Directory.Exists(filesPath))
{
Console.WriteLine("Cannot find directory '{0}'", filesPath);
return;
}
try
{
string[] filenames = Directory.GetFiles(filesPath);
using (ZipOutputStream s = new ZipOutputStream(File.Create(zipFilePath)))
{
s.SetLevel(9); // 压缩级别 0-9
//s.Password = "123"; //Zip压缩文件密码
byte[] buffer = new byte[4096]; //缓冲区大小
foreach (string file in filenames)
{
ZipEntry entry = new ZipEntry(Path.GetFileName(file));
entry.DateTime = DateTime.Now;
s.PutNextEntry(entry);
using (FileStream fs = File.OpenRead(file))
{
int sourceBytes;
do
{
sourceBytes = fs.Read(buffer, 0, buffer.Length);
s.Write(buffer, 0, sourceBytes);
} while (sourceBytes > 0);
}
}
s.Finish();
s.Close();
}
}
catch (Exception ex)
{
Console.WriteLine("Exception during processing {0}", ex);
}
}
private static void UnZipFile( string zipFilePath)
{
if (!File.Exists(zipFilePath))
{
Console.WriteLine("Cannot find file '{0}'", zipFilePath);
return;
}
using (ZipInputStream s = new ZipInputStream(File.OpenRead(zipFilePath)))
{
ZipEntry theEntry;
while ((theEntry = s.GetNextEntry()) != null)
{
Console.WriteLine(theEntry.Name);
string directoryName = Path.GetDirectoryName(theEntry.Name);
string fileName = Path.GetFileName(theEntry.Name);
// create directory
if (directoryName.Length > 0)
{
Directory.CreateDirectory(directoryName);
}
if (fileName != String.Empty)
{
using (FileStream streamWriter = File.Create(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;
}
}
}
}
}
}
}
}
}
希望本文所述对大家C#程序设计有所帮助。
标签:C#,文件,压缩
0
投稿
猜你喜欢
Spring @Import注解的使用
2022-03-26 16:38:43
java匿名内部类实例简析
2022-12-26 21:25:15
Spring Boot整合Redis的完整步骤
2023-06-03 03:21:56
java图片验证码生成教程详解
2021-11-04 13:22:14
postman测试传入List<String>参数方式
2022-10-13 01:34:40
浅谈BeanPostProcessor加载次序及其对Bean造成的影响分析
2022-05-02 19:52:29
c# 遍历 Dictionary的四种方式
2023-04-17 13:11:10
Mybatis中一条SQL使用两个foreach的问题及解决
2022-02-04 06:05:41
android 中 webview 怎么用 localStorage
2023-04-28 04:38:36
Spring MVC结合Spring Data JPA实现按条件查询和分页
2023-03-04 07:24:36
如何在C# 中查找或结束程序域中的主、子进程
2023-06-14 20:00:41
Spring Boot集成Shiro实现动态加载权限的完整步骤
2023-02-18 17:43:10
Spring异常捕获且回滚事务解决方案
2023-04-25 18:32:41
Java递归遍历树形结构的实现代码
2021-11-15 19:51:59
Java探索之Thread+IO文件的加密解密代码实例
2023-01-26 19:07:03
Android自定义listview布局实现上拉加载下拉刷新功能
2023-05-12 23:27:28
c#的异或运算符介绍
2021-08-09 03:17:51
Android实现闪光灯效果
2023-08-02 12:20:06
SpringBoot整合mybatis的方法详解
2023-09-02 06:23:57
Android如何实现APP自动更新
2021-10-31 06:09:27