首页 > 开发 > 综合 > 正文

在系统中生成Excel流并传给用户

2024-07-21 02:29:11
字体:
来源:转载
供稿:网友

  在系统中经常出现这样的情况就是生成excel流 并将生成的excel 流传给用户

  一般的来讲可以利用 response 来向客户端发送一个http头 ,并将excel流发送出去就可以了,但会出现一个问题就是点击打开的时候会出现两次 文件下载 对话框,主要的原因:(现在的猜测,还没有找到准确的原因)。

  第一次打开 时 ,在系统中已经存在了excel流的临时文件(就是文件,没有文件的后缀名的存在) ,但没有原来的(真实文件的存在),要求用户是否将临时文件保存到计算机其他的位置上。(是否跟没有后缀名有关)

  第二次 ,选择客户端文件的位置,是否保存到其他的非临时文件夹位置。

  现在的解决方案是

  新建一个页面专门提供导出数据的

  在这个页面中的page_load中写这样的代码

private void page_load(object sender, system.eventargs e)

         {

              // 在此处放置用户代码以初始化页面
             reportrule reportrule=new reportrule();
              byte[] result=  reportrule.renderreport(httpcontext.current.server.urldecode(this.request.querystring["peportpath"]),request.querystring["id"]);   //生成excel流

              httpcontext.current.response.contenttype = "application/vnd.ms-excel";

              httpcontext.current.response.appendheader("content-disposition","attachment;filename=hahh.xls");

              httpcontext.current.response.binarywrite(result);

              httpcontext.current.response.end();

         }

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表