ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

.net C# 多文件一起压缩使用

2022-03-09 16:01:56  阅读:167  来源: 互联网

标签:fs string C# 压缩 buffer Length new net Response


首先引入dll文件ICSharpCode.SharpZipLib.dll 管理NuGet包里面下载

压缩文件

/// <summary>
/// 压缩文件
/// </summary>
/// <param name="fileName">要压缩的所有文件(完全路径)</param>
/// <param name="fileName">文件名称</param>
/// <param name="name">压缩后文件路径</param>
/// <param name="Level">压缩级别</param>
public void ZipFileMain(string[] filenames, string[] fileName, string name, int Level)
{
    ZipOutputStream s = new ZipOutputStream(File.Create(name));
    Crc32 crc = new Crc32();
    //压缩级别
    s.SetLevel(Level); // 0 - store only to 9 - means best compression
    try
    {
        int m = 0;
        foreach (string file in filenames)
        {
            //打开压缩文件
            FileStream fs = File.OpenRead(file);//文件地址
            byte[] buffer = new byte[fs.Length];
            fs.Read(buffer, 0, buffer.Length);
            //建立压缩实体
            ZipEntry entry = new ZipEntry(fileName[m].ToString());//原文件名
            //时间
            entry.DateTime = DateTime.Now;
            //空间大小
            entry.Size = fs.Length;
            fs.Close();
            crc.Reset();
            crc.Update(buffer);
            entry.Crc = crc.Value;
            s.PutNextEntry(entry);
            s.Write(buffer, 0, buffer.Length);
            m++;
        }
    }
    catch
    {
        throw;
    }
    finally
    {
        s.Finish();
        s.Close();
    }
}

 

文件下载

//下载打包文件
    private void DownloadFile(string fileName, string filePath)
    {
        FileInfo fileInfo = new FileInfo(filePath);
        Response.Clear();
        Response.ClearContent();
        Response.ClearHeaders();
        Response.AddHeader("Content-Disposition", "attachment;filename=" + fileName);
        Response.AddHeader("Content-Length", fileInfo.Length.ToString());
        Response.AddHeader("Content-Transfer-Encoding", "binary");
        Response.ContentType = "application/octet-stream";
        Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312");
        Response.WriteFile(fileInfo.FullName);
        Response.Flush();
        File.Delete(filePath);//删除已下载文件
        Response.End();
    }

 

具体使用

protected void BtnDownloadFiles_Click(object sender, EventArgs e)
    {
        List<string> listFJ = new List<string>();//保存附件路径
        List<string> listFJName = new List<string>();//保存附件名字
        for (int i = 0; i < gridView.Rows.Count; i++)
        {
            HtmlInputCheckBox chk = (Page.Master.FindControl("ContentPlaceHolder1").FindControl("gridView") as GridView).Rows[i].FindControl("checkboxname") as HtmlInputCheckBox;
            if (chk != null && chk.Checked)
            {
                string temp = gridView.Rows[i].Cells[14].Text.ToString().Trim();
                if (temp != " ")
                {
                    listFJ.Add(Server.MapPath("~") + temp);
                    listFJName.Add(temp);
                }
            }
        }
        string time = DateTime.Now.Ticks.ToString();
        ZipFileMain(listFJ.ToArray(), listFJName.ToArray(), Server.MapPath("~/uploadfiles/" + time + ".zip"), 9);//压缩文件
        DownloadFile(Server.UrlEncode("附件.zip"), Server.MapPath("~/uploadfiles/" + time + ".zip"));//下载文件
    }

 

 

 

来源:https://www.cnblogs.com/loushengjie/p/10766351.html

标签:fs,string,C#,压缩,buffer,Length,new,net,Response
来源: https://www.cnblogs.com/youmingkuang/p/15985513.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有