zoukankan      html  css  js  c++  java
  • 文件下载

    代码
           string picUrl = Server.MapPath(Image1.ImageUrl);
                System.IO.FileInfo file 
    = new System.IO.FileInfo(picUrl);
                Response.Clear();
                
    //  添加头信息,为"文件下载/另存为"对话框指定默认文件名 
                Response.AddHeader("Content-Disposition""attachment;filename=" + Server.UrlEncode(file.Name));

                
    //  添加头信息,指定文件大小,让浏览器能够显示下载进度 
                Response.AddHeader("Content-Length", file.Length.ToString());

                
    //  指定返回的是一个不能被客户端读取的流,必须被下载 
                Response.ContentType = "application/ms-excel";

                
    //  把文件流发送到客户端 
                Response.WriteFile(file.FullName);

                
    //  停止页面的执行 
                Response.End();
  • 相关阅读:
    反射
    注解
    file
    exception(异常)
    MySQL问题
    maven 中 遇到的问题
    Java读取文本数字
    人民币-欧元预测(ARIMA算法)代码
    云平台项目--学习经验--jsrender前端渲染模板
    云平台项目--学习经验--BootstrapValidate表单验证插件
  • 原文地址:https://www.cnblogs.com/yinpeng186/p/1781190.html
Copyright © 2011-2022 走看看