vs2015 JS+EasyUI+C# Excel导出

Wesley13
• 阅读 612
前台:{
                     id: 'print', iconCls: 'icon-print', text: '导出', handler: function () {
                         var filterRules = $('#dg').datagrid('options').filterRules;
                         var filters = "";
                         if (filterRules.length > 0) {
                             filters = "[";
                             for (var i = 0; i < filterRules.length; i++) {
                                 if (i > 0) {
                                     filters += ",";
                                 }
                                 filters += "{\"field\":\"" + filterRules[i].field + "\",\"op\":\"" + filterRules[i].op + "\",\"value\":\"" + filterRules[i].value + "\"}";
                             }
                             filters += "]";
                         }
                         window.open("/Test/Test/TestDataQuery?export=y&filterRules=" + filters);
                     }
                 }

后台:    public ActionResult TestDataQuery()
        {              private Entitie db = new Entitie();
           //查询语句
            string sql = "select t.ID,t.TEST1,t.TEST2,t.TEST3,t.TEST4,t.TEST5 from test t";
            //----导出参数
            string excelname = "测试表";
            string[] excelcol = { "测试1", "测试2", "测试3", "测试4", "测试5" };        
       DataTable dt = DbHelperOrcl.GetDTQuery(db.Database.Connection.ConnectionString, sql);/       if (Request["export"] == "y")            {                GridExport(dt, excelname, excelcol);            }
            string jsonData = GetJeJsonData(db.Database.Connection.ConnectionString, sql, Request, excelname, excelcol);
            return Content(jsonData);
          
        }

导出:public static void GridExport(DataTable dt, string excelname, string[] excelcol)
        {
            HSSFWorkbook workbook = new HSSFWorkbook();
            ISheet sheet = workbook.CreateSheet("Sheet1");
            ICell cells;
            //--------------------------------------------------------------------
            ICellStyle styles = GetStyles(workbook);//普通样式
            ICellStyle styles_zd = GetzdStyles(workbook);//表头字段样式
            //----------------------标题-----------------------------------------------
           //CellRangeAddress四个参数为:起始行,结束行,起始列,结束列
            sheet.AddMergedRegion(new CellRangeAddress(0, 0, 0, dt.Columns.Count-1));
            //----------------------表头-----------------------------------------------
            cells = sheet.CreateRow(0).CreateCell(0);
            cells.SetCellValue(excelname);
            cells.CellStyle = styles_zd;
            int col_head = 0;
            for (int j = 0; j < dt.Columns.Count; j++)
            {
                string name = dt.Columns[j].ColumnName;
                if (col_head == 0)
                {
                    cells = sheet.CreateRow(1).CreateCell(col_head);
                }
                else
                {
                    cells = sheet.GetRow(1).CreateCell(col_head);
                }
                cells.SetCellValue(name);
                cells.CellStyle = styles_zd;
                col_head++;
                if (name == "ID" || name == "id")
                {
                    sheet.SetColumnHidden(0, true);
                }
            }
            //----------------------数据-----------------------------------------------
            int rowno = 1;
            foreach (DataRow dr in dt.Rows)
            {
                int cellno = 0;
                for (int i = 0; i < dt.Columns.Count; i++)
                {
                    object value = dr[i];
                    //如果非空,则赋给对象的属性  
                    if (cellno == 0)
                    {
                        cells = sheet.CreateRow(rowno).CreateCell(cellno);
                    }
                    else
                    {
                        cells = sheet.GetRow(rowno).CreateCell(cellno);
                    }
                    if (value != DBNull.Value)
                    {
                        cells.SetCellValue(value.ToString());
                    }
                    cells.CellStyle = styles;
                    cellno += 1;
                }
                rowno += 1;
            }
            HttpResponse response= System.Web.HttpContext.Current.Response;
            string filename = excelname!=null? excelname+".xls" : "数据.xls";
            response.ContentType = "application/vnd.ms-excel";
            response.AddHeader("Content-Disposition", string.Format("attachment;filename={0}", filename));
            response.Clear();
            response.BinaryWrite(WriteToStream(workbook).GetBuffer());
            response.End();
        }不喜勿喷!!!纯属个人经验
点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
待兔 待兔
4个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Jacquelyn38 Jacquelyn38
3年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Stella981 Stella981
3年前
PHP导入导出EXCELl,CSV
PHP导入导出Excel,CSVHTML<formaction"{:U('Admin/Unit/importcsv')}"method"post"name"myform"id"myform"enctype"multipart/formdata"<input
Wesley13 Wesley13
3年前
mysql设置时区
mysql设置时区mysql\_query("SETtime\_zone'8:00'")ordie('时区设置失败,请联系管理员!');中国在东8区所以加8方法二:selectcount(user\_id)asdevice,CONVERT\_TZ(FROM\_UNIXTIME(reg\_time),'08:00','0
Easter79 Easter79
3年前
SpringBoot整合Redis乱码原因及解决方案
问题描述:springboot使用springdataredis存储数据时乱码rediskey/value出现\\xAC\\xED\\x00\\x05t\\x00\\x05问题分析:查看RedisTemplate类!(https://oscimg.oschina.net/oscnet/0a85565fa
Stella981 Stella981
3年前
Django中Admin中的一些参数配置
设置在列表中显示的字段,id为django模型默认的主键list_display('id','name','sex','profession','email','qq','phone','status','create_time')设置在列表可编辑字段list_editable
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Python进阶者 Python进阶者
10个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这