C#生成ZIP压缩包
生成ZIP压缩包C#代码如下:
- using System;
- using System.Collections.Generic;
- using System.Text;
- using ICSharpCode.SharpZipLib;
- using ICSharpCode.SharpZipLib.Checksums;
- using ICSharpCode.SharpZipLib.Zip;
- using System.IO;
- using log4net;
- using log4net.Config;
- namespace Test.BLL
- {
- public class TestZipFile
- {
- protected static readonly ILog logger = LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
- ///<summary>
- /// 创建ZIP文件
- ///</summary>
- public void CreateZipFile(string[] files, string sTempFile, string sPassWord)
- {
- try
- {
- using (ZipOutputStream s = new ZipOutputStream(File.Create(sTempFile)))
- {
- s.SetLevel(); // 压缩级别 0-9
- if (sPassWord != "")
- {
- s.Password = sPassWord; //Zip压缩文件密码
- }
- byte[] buffer = new byte[]; //缓冲区大小
- foreach (string file in files)
- {
- if (!string.IsNullOrEmpty(file))
- {
- if (File.Exists(file))
- {
- 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, , buffer.Length);
- s.Write(buffer, , sourceBytes);
- } while (sourceBytes > );
- }
- }
- else
- {
- logger.Error("文件:" + file + "不存在。");
- }
- }
- }
- s.Finish();
- s.Close();
- }
- }
- catch (Exception ex)
- {
- logger.Error("压缩文件时异常!");
- logger.Error("异常描述:\t" + ex.Message);
- logger.Error("异常方法:\t" + ex.TargetSite);
- logger.Error("异常堆栈:\t" + ex.StackTrace);
- }
- }
- /// <summary>
- ///
- /// </summary>
- /// <param name="files">放入ZIP的文件路劲(含文件名)</param>
- /// <param name="sTempFile">创建的ZIP文件路劲(含文件名)</param>
- /// <param name="sPassWord">ZIP文件密码</param>
- /// <param name="folderNames">存放到ZIP中的文件夹名,空代表放在顶级目录</param>
- public void CreateZipFileMutilFolder(string[] files, string sTempFile, string sPassWord, string[] folderNames)
- {
- try
- {
- using (ZipOutputStream s = new ZipOutputStream(File.Create(sTempFile)))
- {
- s.SetLevel(); // 压缩级别 0-9
- if (sPassWord != "")
- {
- s.Password = sPassWord; //Zip压缩文件密码
- }
- byte[] buffer = new byte[]; //缓冲区大小
- int i = ;
- foreach (string file in files)
- {
- if (!string.IsNullOrEmpty(file))
- {
- if (File.Exists(file))
- {
- ZipEntry entry = new ZipEntry((string.IsNullOrEmpty(folderNames[i]) ? "" : (folderNames[i] + "\\")) + Path.GetFileName(file));
- entry.DateTime = DateTime.Now;
- s.PutNextEntry(entry);
- using (FileStream fs = File.OpenRead(file))
- {
- int sourceBytes;
- do
- {
- sourceBytes = fs.Read(buffer, , buffer.Length);
- s.Write(buffer, , sourceBytes);
- } while (sourceBytes > );
- }
- }
- else
- {
- logger.Error("文件:" + file + "不存在。");
- }
- }
- i++;
- }
- s.Finish();
- s.Close();
- }
- }
- catch (Exception ex)
- {
- logger.Error("压缩文件时异常!");
- logger.Error("异常描述:\t" + ex.Message);
- logger.Error("异常方法:\t" + ex.TargetSite);
- logger.Error("异常堆栈:\t" + ex.StackTrace);
- }
- }
- }
- }
其中会用到的文件名、文件路径非法字符替换方法:
- /// <summary>
- /// Remove invalid characters which are not allowed in the file name
- /// </summary>
- /// <param name="fileName"></param>
- /// <returns></returns>
- public string RemoveFileNameInvalidChar(string fileName)
- {
- if (string.IsNullOrEmpty(fileName))
- return fileName;
- string invalidChars = new string(Path.GetInvalidFileNameChars());
- string invalidReStr = string.Format("[{0}]", Regex.Escape(invalidChars));
- return Regex.Replace(fileName, invalidReStr, "");
- }
- /// <summary>
- /// Remove invalid characters which are not allowed in the path names
- /// </summary>
- /// <param name="filePath"></param>
- /// <returns></returns>
- public string RemovePathInvalidChar(string filePath)
- {
- if (string.IsNullOrEmpty(filePath))
- return filePath;
- string invalidChars = new string(Path.GetInvalidPathChars());
- string invalidReStr = string.Format("[{0}]", Regex.Escape(invalidChars));
- return Regex.Replace(filePath, invalidReStr, "");
- }
参考:http://jianyun.org/archives/959.html
ZIP DLL:http://files.cnblogs.com/xuezhizhang/ICSharpCode.SharpZipLib.zip
C#生成ZIP压缩包的更多相关文章
- PHP生成zip压缩包
/* * $res = new MakeZip($dir,$zipName); *@ $dir是被压缩的文件夹名称,可使用路径,例 'a'或者'a/test.txt'或者'test.txt' *@ $ ...
- 通过javascript在网页端生成zip压缩包并下载
zip.js是什么 zip.js的github项目地址:http://gildas-lormeau.github.io/zip.js/ 通过zip.js封装一个能在网页端生成zip文件的插件, 直接在 ...
- 【java工具类】生成Zip压缩包
多文件生成压缩包,返回压缩包生成位置的路径. FileUtil.java /** * 文件打压缩包 * @param files * @param Name * @return * @throws E ...
- python 生成zip压缩包
import zipfile file_name="a.txt" f = zipfile.ZipFile('test.zip','w',zipfile.ZIP_STORED) f. ...
- php生成zip压缩文件的方法,支持文件和压缩包路径查找
/* * new creatZip($_dir,$_zipName); *@ _dir是被压缩的文件夹名称,可使用路径,例 'a'或者'a/test.txt'或者'test.txt' *@ _zipN ...
- Node.js使用jszip实现打包zip压缩包
一.前言 最近有这样的一个需求,需要把两个同名的.mtl文件和.obj文件打包成一个同名的.zip压缩包.刚开始文件不多的时候,只有几个,或者十几个,甚至二三十个的时候,还能勉强接受手动修改,但是随着 ...
- java生成zip压缩文件,解压缩文件
1.生成zip public static void main(String[] args) { try { // testZip("c:\\temp.txt", "c: ...
- python 解压zip压缩包
在当前路径解压zip压缩包,生成同名文件夹,内部目录结构与压缩包一致 import zipfile import os def un_zip(file_name): """ ...
- MySQL8.0 zip压缩包版本 Windows下安装
MySQL zip压缩包版本 Windows下安装 Download MySQL Community Server 解压到相应的目录 我的解压目录:D:\Program Files\mysql-8.0 ...
随机推荐
- Ubuntu Apache 不同端口监听不同站点
在/etc/apache2/apache2.conf 中,把项目根目录设置成默认的/var/www 不要设置在某个站点的路径下(我就是配置第一个站点时改了这里才会配置第二个站点时好久弄不出来) 在 / ...
- k-th smallest 问题总结
k-th smallest/biggest 问题大约有这几道: 373. Find K Pairs with Smallest Sums 从两个list里各取一个数求和,求所有可能的sum里第k小的 ...
- Leeetcode--581. Shortest Unsorted Continuous Subarray
Given an integer array, you need to find one continuous subarray that if you only sort this subarray ...
- CentOS添加明细路由
网络架构图 根据最近为客户设计的网络架构,简单的梳理一个网路架构图,当然实际上的网络架构要比这个架构图复杂的多,咱们这边只是用这个图作为一个简单的示例. 拓扑分析 我们要实现专线两端不同网段的 ...
- kaldi的TIMIT实例二
============================================================================ MonoPhone Training & ...
- jdk-tomcat-jenkens 安装
1--安装JDK 下载JDK放到你需要的目录,解压,然后添加环境变量 2--安装tomcat 从官方网站下载tomcat的安装包,然后解压 启动tomcat , TOMCAT的默认端口是8080,要记 ...
- Spring MVC & Boot & Cloud 技术教程汇总(长期更新)
昨天我们发布了Java成神之路上的知识汇总,今天继续. Java成神之路技术整理(长期更新) 以下是Java技术栈微信公众号发布的关于 Spring/ Spring MVC/ Spring Boot/ ...
- HoloLens开发手记-配置开发环境 Install the tools
随着Build 2016开发者大会的结束,HoloLens开发包也正式开放下载.Hololens没有独立的SDK,开发特性被集成到最新的Visual Studio Update 2中.如果你没有Hol ...
- 必须熟练的基础linux命令
推荐:命令大全 http://man.linuxde.net/ 重要的几个热键[Tab],[ctrl]-c, [ctrl]-d [Tab]按键---具有『命令补全』不『档案补齐』的功能 [Ctrl]- ...
- JavaScript “跑马灯”抽奖活动代码解析与优化(二)
既然是要编写插件.那么叫做"插件"的东西肯定是具有的某些特征能够满足我们平时开发的需求或者是提高我们的开发效率.那么叫做插件的东西应该具有哪些基本特征呢?让我们来总结一下: 1.J ...