zoukankan      html  css  js  c++  java
  • 导出execl

           string filepath = Utils.GetMapPath("/upload/excel/");
                filepath = filepath + fileName + ".xls";
                string tempFilePath = Utils.GetMapPath("/ExcelTemplate/export_comment_excel.xlsx");
    
                DataSet ds = new BLL.Comment().GetList(0, strWhere, "addtime desc");
    
                DataTable exportDT = new DataTable();
                exportDT.Columns.Add("姓名", typeof(string));
                exportDT.Columns.Add("评价等级(星星数)", typeof(int));
                exportDT.Columns.Add("评价内容", typeof(string));
                exportDT.Columns.Add("评价时间", typeof(string));
                exportDT.Columns.Add("状态", typeof(string));
                exportDT.Columns.Add("原因", typeof(string));
    
                if (ds != null && ds.Tables[0].Rows.Count > 0)
                {
                    for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
                    {
                        DataRow dr = exportDT.NewRow();
                        dr["姓名"] = ds.Tables[0].Rows[i]["Name"].ToString();
                        dr["评价等级(星星数)"] = ds.Tables[0].Rows[i]["level"].ToString();
                        dr["评价内容"] = ds.Tables[0].Rows[i]["content"].ToString();
                        dr["评价时间"] = ds.Tables[0].Rows[i]["addtime"].ToString();
                        dr["状态"] = GetStatus(ds.Tables[0].Rows[i]["status"].ToString());
                        dr["原因"] = ds.Tables[0].Rows[i]["reason"].ToString();
                        exportDT.Rows.Add(dr);
                    }
                }
    
                Common.ExcelToData.ExportExcel(tempFilePath, filepath, exportDT, "评论信息");
    
            GC.Collect();//行销毁   
                HttpContext.Current.Response.Buffer = true;
                HttpContext.Current.Response.Clear();
                HttpContext.Current.Response.ContentType = "application/ms-excel";
                HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment;filename=" + fileName + "(" + DateTime.Now.ToString("yyMMddHHmm") + ").xls");
                HttpContext.Current.Response.WriteFile(filepath);
                HttpContext.Current.Response.Flush();
                File.Delete(filepath);
    
                HttpContext.Current.Response.End();
  • 相关阅读:
    gin使用validator库参数校验若干实用技巧
    在gin框架中使用JWT
    使用zap接收gin框架默认的日志并配置日志归档
    gin框架路由拆分与注册
    Gin框架介绍及使用
    GO学习-(39) 优雅地关机或重启
    GO学习-(38) Go语言结构体转map[string]interface{}的若干方法
    WPF中不规则窗体与WindowsFormsHost控件的兼容问题完美解决方案
    [ 夜间模式 ] NightVersion
    HDU1518 Square(DFS)
  • 原文地址:https://www.cnblogs.com/jronny/p/12091344.html
Copyright © 2011-2022 走看看