zoukankan      html  css  js  c++  java
  • 将table信息导出到excel

    这两天需要做一个导出到excel的功能,因为老是出现浏览器不兼容的问题,不过最后找到了个,自己稍微把它封装了下,跟大家分享下。

    public void Excelxls(HtmlTable tabExcel)
        {
            try
            {
                //获取到页面的table
                XlsDocument xls = new XlsDocument();
                xls.FileName = 2012 + "_年度报表.xls";
                string sheetName = "test";
                int rowMin = 1;
                int rowCount = tabExcel.Rows.Count;  //获取到共多少行
                int colMin = 1;
                int colCount = tabExcel.Rows[0].Cells.Count;  //获取到共多少列
                Worksheet sheet = xls.Workbook.Worksheets.AddNamed(sheetName);

                HtmlTableRowCollection tabRow = tabExcel.Rows;
                Cells cells = sheet.Cells;
                for (int r = 0; r < rowCount; r++)
                {
                    if (r == 0)
                    {
                        for (int i = 0; i < colCount; i++)
                        {
                            //在一行内创建colCount个单元格
                            cells.Add(1, colMin + i, tabRow[0].Cells[i].InnerText).Font.Bold = true;
                        }
                    }
                    else
                    {
                        for (int c = 0; c < colCount; c++)
                        {
                            Cell cell = cells.Add(r + rowMin, c + colMin, tabRow[r].Cells[c].InnerText);//从第二行的第一个单元格开始填充
                        }
                    }
                }
                xls.Send();
            }
            catch (Exception ex)
            {
                this.ClientScript.RegisterStartupScript(this.GetType(), "alert_msg", "<script>alert(\"" + ex.Message + "\")</script>");
            }
        }

    写完这个方法,然后页面继承它,调用这个方法就OK了,还有就是这个dll文件哦

    这个是下载地址:http://iiidown.com/source/32001487

  • 相关阅读:
    operamasks—omMessageBox的使用
    operamasks-omGrid的使用
    SQL Server转sqlite数据库
    operamasks—omMessageTip的使用
    operamasks—omBorderLayout布局
    选择器(E:hover/E:active/E:focus的使用)
    CSS3(各UI元素状态伪类选择器受浏览器的支持情况)
    选择器的使用(nth-of-type和nth-last-of-type选择器)
    选择器的使用(nth-child和nth-last-child选择器)
    选择器的使用(first-child和last-child选择器)
  • 原文地址:https://www.cnblogs.com/YuanShuai/p/2440170.html
Copyright © 2011-2022 走看看