如何用C#把excel文件转换为压缩好的zip文件

用C#使用ICSharpCode.SharpZipLib.dll这个控件把excel文件压缩跪求代码最好把每句注释都标上(VS新手……很菜菜的……很多看不懂)跪求好心大神... 用C#使用ICSharpCode.SharpZipLib.dll这个控件
把excel文件压缩
跪求代码
最好把每句注释都标上(VS新手……很菜菜的……很多看不懂)
跪求好心大神帮助T_T
展开
 我来答
yinweidns
2013-04-11 · TA获得超过106个赞
知道小有建树答主
回答量:212
采纳率:0%
帮助的人:126万
展开全部
#region 加压解压方法
/// <summary>
/// 功能:压缩文件(暂时只压缩文件夹下一级目录中的文件,文件夹及其子级被忽略)
/// </summary>
/// <param name="dirPath">被压缩的文件夹夹路径</param>
/// <param name="zipFilePath">生成压缩文件的路径,为空则默认与被压缩文件夹同一级目录,名称为:文件夹名+.zip</param>
/// <param name="err">出错信息</param>
/// <returns>是否压缩成功</returns>
public bool ZipFile(string dirPath, string zipFilePath, out string err)
{
err = "";
if (dirPath == string.Empty)
{
err = "要压缩的文件夹不能为空!";
return false;
}
if (!Directory.Exists(dirPath))
{
err = "要压缩的文件夹不存在!";
return false;
}
//压缩文件名为空时使用文件夹名+.zip
if (zipFilePath == string.Empty)
{
if (dirPath.EndsWith("\\"))
{
dirPath = dirPath.Substring(0, dirPath.Length - 1);
}
zipFilePath = dirPath + ".zip";
}
try
{
string[] filenames = Directory.GetFiles(dirPath);
using (ZipOutputStream s = new ZipOutputStream(File.Create(zipFilePath)))
{
s.SetLevel(9);
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)
{
err = ex.Message;
return false;
}
return true;
}
/// <summary>
/// 功能:解压zip格式的文件。
/// </summary>
/// <param name="zipFilePath">压缩文件路径</param>
/// <param name="unZipDir">解压文件存放路径,为空时默认与压缩文件同一级目录下,跟压缩文件同名的文件夹</param>
/// <param name="err">出错信息</param>
/// <returns>解压是否成功</returns>
public bool UnZipFile(string zipFilePath, string unZipDir, out string err)
{
err = "";
if (zipFilePath == string.Empty)
{
err = "压缩文件不能为空!";
return false;
}
if (!File.Exists(zipFilePath))
{
err = "压缩文件不存在!";
return false;
}
//解压文件夹为空时默认与压缩文件同一级目录下,跟压缩文件同名的文件夹
if (unZipDir == string.Empty)
unZipDir = zipFilePath.Replace(Path.GetFileName(zipFilePath), Path.GetFileNameWithoutExtension(zipFilePath));
if (!unZipDir.EndsWith("\\"))
unZipDir += "\\";
if (!Directory.Exists(unZipDir))
Directory.CreateDirectory(unZipDir);
try
{
using (ZipInputStream s = new ZipInputStream(File.OpenRead(zipFilePath)))
{
ZipEntry theEntry;
while ((theEntry = s.GetNextEntry()) != null)
{
string directoryName = Path.GetDirectoryName(theEntry.Name);
string fileName = Path.GetFileName(theEntry.Name);
if (directoryName.Length > 0)
{
Directory.CreateDirectory(unZipDir + directoryName);
}
if (!directoryName.EndsWith("\\"))
directoryName += "\\";
if (fileName != String.Empty)
{
using (FileStream streamWriter = File.Create(unZipDir + 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;
}
}
}
}
}//while
}
}
catch (Exception ex)
{
err = ex.Message;
return false;
}
return true;
}//解压结束
#endregion
bxfc
2013-04-11 · TA获得超过872个赞
知道小有建树答主
回答量:1104
采纳率:0%
帮助的人:682万
展开全部
举例: ZipFile(@"D:\temp\绩效bak.xlsx", @"D:\temp\绩效bak.xlsx.temp.zip");

/// <summary>
/// 解压缩
/// </summary>
/// <param name="infile">压缩包</param>
/// <param name="outFilePath">解压地址</param>
public static void UnZipFile(string infile, string outFilePath) //解压缩
{
if (!string.IsNullOrEmpty(infile))
{
if (!Directory.Exists(outFilePath)) Directory.CreateDirectory(outFilePath);
using (var inFileStream = new FileStream(infile, FileMode.Open, FileAccess.Read, FileShare.Read))//创建读文件流
{
using (var zipInputfs = new ZipInputStream(inFileStream))//创建zip读文件流
{
while (true)
{
var zp = zipInputfs.GetNextEntry(); //获取下一个对象
if (zp == null) break;
if (!zp.IsDirectory && zp.Crc != 00000000L)//验证是不是为目录
{
int i = 2048;
byte[] b = new byte[i];
using (var outFileStream = File.Create(Path.Combine(outFilePath, zp.Name)))//创建写文件流
{
while (true)
{
i = zipInputfs.Read(b, 0, b.Length);//读流
if (i <= 0) break;
outFileStream.Write(b, 0, i);//写文件
}
outFileStream.Close();
}
}
else
{
Directory.CreateDirectory(Path.Combine(outFilePath, zp.Name));//创建目录
}
}
zipInputfs.Close();
}
inFileStream.Close();
}
}
}

/// <summary>
/// 压缩文件
/// </summary>
/// <param name="inFile">用于压缩的文件</param>
/// <param name="outZipFile">目标压缩包文件</param>
public static void ZipFile(string inFile, string outZipFile)
{
if (!string.IsNullOrEmpty(outZipFile)) //压缩包名称不为空
{
if (File.Exists(outZipFile)) File.Delete(outZipFile);//删除已有文件
using (ZipOutputStream u = new ZipOutputStream(File.Create(outZipFile)))//创建压缩流
{
using (FileStream f = File.OpenRead(inFile))
{
byte[] b = new byte[f.Length];
f.Read(b, 0, b.Length); //将文件流加入缓冲字节中
ZipEntry z = new ZipEntry(new FileInfo(inFile).Name);
u.PutNextEntry(z); //为压缩文件流提供一个容器
u.Write(b, 0, b.Length); //写入字节
f.Close();
}
u.Finish(); // 结束压缩
u.Close();
}
}
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友d4d2ac2
2013-04-15 · 超过36用户采纳过TA的回答
知道小有建树答主
回答量:617
采纳率:0%
帮助的人:138万
展开全部
你参考下PageOffice吧
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式