码迷,mamicode.com
首页 > 其他好文 > 详细

下载文件(简洁方法)

时间:2014-08-13 17:45:06      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   文件   ar   

   public static void DownLoadFile(HttpRequest _Request, HttpResponse _Response, string fileName, string fullPath)
    {
        FileInfo fileInfo = new FileInfo(fullPath);
        if (fileInfo.Exists)
        {
            _Response.Clear();
            _Response.ClearHeaders();
            _Response.Buffer = false;
            _Response.ContentType = "application/octet-stream";
            _Response.ContentEncoding = Encoding.UTF8;
            _Response.AddHeader("Content-Disposition", "attachment;filename=" + fileName);
            _Response.AppendHeader("Content-Length", fileInfo.Length.ToString());
            _Response.TransmitFile(fullPath, 0L, fileInfo.Length);
            _Response.WriteFile(fileInfo.FullName);
            _Response.Flush();
            _Response.End();
            _Response.Close();
        }
    }

 

下载文件(简洁方法),布布扣,bubuko.com

下载文件(简洁方法)

标签:style   blog   http   color   os   io   文件   ar   

原文地址:http://www.cnblogs.com/zhaolijing910/p/3910102.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!