首頁  >  文章  >  後端開發  >  有關asp.net如何實作多個檔案同時下載問題相關解答

有關asp.net如何實作多個檔案同時下載問題相關解答

巴扎黑
巴扎黑原創
2018-05-18 16:45:331610瀏覽

這篇文章主要為大家詳細介紹了asp.net實作多個檔案同時下載功能,具有一定的參考價值,有興趣的小夥伴們可以參考一下

#本文實例為大家分享了asp.net多個檔案同時下載的具體程式碼,供大家參考,具體內容如下

1、先讀取資料夾下的文件,可能同時存在多個文件

2、選取文件,然後點擊下載,同時可以選擇多個文件。

想法:透過生產壓縮包的形式下載,然後再清楚壓縮包,讓使用者可以一次全部下載下來。

一、取得目錄下的所有文件,然後綁定到checkboxlist中 ,程式碼如下:

 ckl_ck.Items.Clear();
 DirectoryInfo TheFolder = new DirectoryInfo(Server.MapPath("Resource/Help"));
 //遍历文件夹下的文件
 foreach (FileInfo NextFile in TheFolder.GetFiles())
  this.ckl_ck.Items.Add(NextFile.Name);

二、選取文件後,點選下載按鈕。代碼:

 protected void Btn_down_Click(object sender, EventArgs e)
 {
 if (ckl_ck.Items.Count > 0)
 {
  List<string> listFJ = new List<string>();//保存附件路径
  List<string> listFJName = new List<string>();//保存附件名字
  for (int i = 0; i < ckl_ck.Items.Count; i++)
  {
  if (ckl_ck.Items[i].Selected)
  {
   listFJ.Add(Server.MapPath("Resource/Help/") + ckl_ck.Items[i].Text);
   listFJName.Add(ckl_ck.Items[i].Text);
  }

  }
  string time = DateTime.Now.Ticks.ToString();
  ZipFileMain(listFJ.ToArray(), listFJName.ToArray(), Server.MapPath("Resource/Help/" + time + ".zip"), 9);//压缩文件
  DownloadFile(Server.UrlEncode("附件.zip"), Server.MapPath("Resource/Help/" + time + ".zip"));//下载文件
 }
 }
 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();
 }

 /// <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();
 }
 }

三、系統中需要引用的dll 需要下載。

四、運行效果如圖:

#

以上是有關asp.net如何實作多個檔案同時下載問題相關解答的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn