이 글에서는 주로 asp.net이 여러 파일을 동시에 다운로드할 수 있는 방법을 자세히 소개합니다. 여기에는 특정 참조 값이 있습니다. 관심 있는 친구는 이를 참조할 수 있습니다.
이 글의 예는 여러 asp.net 파일을 귀하와 공유합니다. 동시 다운로드를 위한 구체적인 코드는 참고용입니다.
1. 먼저 폴더에 있는 파일을 읽어보세요. 동시에 여러 파일이 있을 수 있습니다.
2. 동시에 여러 파일을 선택할 수 있습니다.
아이디어: 압축된 패키지를 제작하여 다운로드한 다음 압축된 패키지를 지워 사용자가 한 번에 다운로드할 수 있도록 하세요.
1. 디렉토리의 모든 파일을 가져와 체크박스 목록에 바인딩합니다.
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);
2. 파일을 선택한 후 다운로드 버튼을 클릭합니다. 코드:
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(); } }
3. 시스템에서 참조해야 하는 DLL을 다운로드해야 합니다.
4. 작동 효과는 그림과 같습니다:
위 내용은 asp.net에서 동시에 여러 파일을 다운로드하는 방법에 대한 질문에 대한 관련 답변의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!