国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

文件打包下載

2019-11-17 01:26:10
字體:
來源:轉載
供稿:網友

文件打包下載

使用的dll:ICSharpCode.SharpZipLib

下載地址http://www.icsharpcode.net/OpenSource/SharpZipLib/Download.aspx

/// <summary>/// 下載資料/// </summary>public void DownloadCourseData(){    string attachBatchNo = DESHelper.Decrypt(ctx.Get("no"), "simpo");//附件批次號    List<Edu_Attach> edu_AttachList = edu_AttachService.FindAttByNo(attachBatchNo);//獲取附件集合    if (edu_AttachList.Count > 0)    {        string pathName = edu_AttachList[0].AttachContent;//附件路徑        int pos = pathName.LastIndexOf("/");        string path = pathName.Substring(0, pos + 1);//路徑不含文件名        string zipName = DateTime.Now.ToString("yyyyMMddHHmmssfff") + strUtil.GetRnd(4, true, false, false, false, "") + ".zip";//zip文件名        string zipPathName = PathHelper.Map(sys.Path.DiskPhoto) + path.Replace("/static/upload/image", "").Replace("/", "http://") + zipName;        FileStream fs = new FileStream(zipPathName, FileMode.Create);        ZipOutputStream zos = new ZipOutputStream(fs);        foreach (Edu_Attach edu_Attach in edu_AttachList)        {            string filePathName = PathHelper.Map(sys.Path.DiskPhoto) + edu_Attach.AttachContent.Replace("/static/upload/image", "").Replace("/", "http://");            pos = filePathName.LastIndexOf("http://");            string zipEntryName = edu_Attach.AttachName;            ZipEntry zipEntry = new ZipEntry(zipEntryName);            zos.PutNextEntry(zipEntry);            fs = File.OpenRead(filePathName);            byte[] byteArray = new byte[fs.Length];            fs.Read(byteArray, 0, byteArray.Length);            zos.Write(byteArray, 0, byteArray.Length);        }        zos.Finish();        zos.Close();        string downloadFileName = path + zipName;        redirectUrl(downloadFileName);    }}
View Code


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 石城县| 江孜县| 晋宁县| 泽普县| 广德县| 甘肃省| 霸州市| 商南县| 兖州市| 甘南县| 华宁县| 云南省| 新兴县| 离岛区| 汾西县| 二连浩特市| 齐齐哈尔市| 武安市| 临夏市| 清水县| 芦山县| 互助| 大关县| 拜泉县| 楚雄市| 台中县| 梅河口市| 竹溪县| 涿鹿县| 临汾市| 旬邑县| 吉首市| 资源县| 讷河市| 禄丰县| 东宁县| 清远市| 综艺| 宁国市| 吉安县| 花莲县|