首页 > 代码库 > 关于网页下载文件,使用数据流方式下载
关于网页下载文件,使用数据流方式下载
关于文件下载,很多都是用href=http://www.mamicode.com/‘文件地址‘,这样做是很不安全的,所以需要使用到文件流,以下代码用于下载一张图片。
Response.BufferOutput = false; Response.Clear(); Response.ContentType = "application/x-msdownload"; Response.AppendHeader("Content-Disposition", "attachment; filename=" + "优惠券.jpg"); Response.ContentType = "application/octstream"; Response.CacheControl = "Private"; System.IO.Stream stm = new System.IO.FileStream(Server.MapPath("~/uploadfiles/youhui/"+path), System.IO.FileMode.Open, System.IO.FileAccess.Read, System.IO.FileShare.Read); Response.AppendHeader("Content-length", stm.Length.ToString()); System.IO.BinaryReader br = new System.IO.BinaryReader(stm); byte[] bytes; for (Int64 x = 0; x < (br.BaseStream.Length / 4096 + 1); x++) { bytes = br.ReadBytes(4096); Response.BinaryWrite(bytes); System.Threading.Thread.Sleep(5); }
关于网页下载文件,使用数据流方式下载
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。