zoukankan      html  css  js  c++  java
  • ASP.Net MVC——DotNetZip简单使用,解决文件压缩问题。

    准备工作:

     在vs工具栏中找到NuGet

     

    下载DotNetZip

    现在就可以使用DotNetZip强大的类库了,在这里我给出一些简单的使用。

        public ActionResult Export()
            {
                using (ZipFile zip = new ZipFile(System.Text.Encoding.Default))
                {
                    zip.AddFile(Server.MapPath("~/Img/2.png"), "Images");
                    zip.AddFile(Server.MapPath("~/File/1.pdf"), "Files");
                    zip.Save(Server.MapPath("~/ZIP/Test.zip"));
                    return File(Server.MapPath("~/ZIP/Test.zip"),
                                               "application/zip", "sample.zip");
                }
            }

    其中“System.Text.Encoding.Default”是解决中文乱码问题。

    从字面上就可以理解zip.AddFile就是从指定路径把文件加入到zip中,后面的参数“Images"和“Files”就是说解压后看到了两个目录。

    zip.Sava就是保存zip文件到某个目录。

     解压后    

    要是文件都在一个目录的话还可以这样:

      public ActionResult Export()
            {
                using (ZipFile zip = new ZipFile())
                {
                    zip.AddDirectory(Server.MapPath("~/Img/"));
                    zip.Save(Server.MapPath("~/ZIP/Test.zip"));
                    return File(Server.MapPath("~/ZIP/Test.zip"),
                                               "application/zip", "sample.zip");
                }
            }

    下面是加密:

     public ActionResult Export()
            {
                using (ZipFile zip = new ZipFile())
                {
                    zip.Password="123";
                    zip.AddDirectory(Server.MapPath("~/Img/"));
                    zip.Save(Server.MapPath("~/ZIP/Test.zip"));
                    return File(Server.MapPath("~/ZIP/Test.zip"),
                                               "application/zip", "sample.zip");
                }
            }
  • 相关阅读:
    OGRE 第一个程序
    C++ 模板
    WTL状态栏出现 'CMultiPaneStatusBarCtrl' : missing storageclass or type specifie错误
    OGRE运行期结构
    WTL头文件中包含的类
    WTL 方式 对话框数据交换(DDX)
    Windows编程--线程的基本知识
    OGRE——OgreMain模块
    php函数call_user_func和call_user_func_array详解
    整合ECShop2.7.2与Discuz!6.0
  • 原文地址:https://www.cnblogs.com/zuochengsi-9/p/5548643.html
Copyright © 2011-2022 走看看