C#纯技术——导出Excel

引言:Excel表格数据是经常出现在工程领域的数据分析中,导出Excel纯C#代码方法

开始:

1.添加引用

NPOI.dll

using NPOI.SS.UserModel;
using NPOI.HSSF.UserModel;

2.创建DataTable 方法 

 public static DataTable CreateTable()
        {
            string[] FiveHeader = { "ID", "班级", "职务", "姓名", "学号" };
            DataTable dataTable = new DataTable("ExportData");//*新建一张表
            foreach (string TemStr in FiveHeader)
            {
                DataColumn strNameColumn = new DataColumn(); 
                strNameColumn.DataType = typeof(String);     
                strNameColumn.ColumnName = TemStr;
                dataTable.Columns.Add(strNameColumn);       //*建立五列数据
            }
            for (int i = 0; i < 10; i++)
            {
                DataRow rowData = dataTable.NewRow();   //*建立行数据
                rowData["ID"] = i.ToString();
                rowData["班级"] = "一班";
                rowData["职务"] = "学生";
                rowData["姓名"] = "猪小明";
                rowData["学号"] = "2333-3333";
                dataTable.Rows.Add(rowData);

            }
            return dataTable;
        }

3.导出DataTable即ExportExcel

 public static bool DataTableToExcel(DataTable dataTable)
        {
            bool result = false;
            IWorkbook workbook = null;
            FileStream fs = null;
            IRow row = null;
            ISheet sheet = null;
            ICell cell = null;
            try
            {
                if (dataTable != null && dataTable.Rows.Count > 0)
                {
                    workbook = new HSSFWorkbook();
                    sheet = workbook.CreateSheet("Sheet1");
                    int rowCount = dataTable.Rows.Count;
                    int columnCount = dataTable.Columns.Count;

                    //设置列头  
                    row = sheet.CreateRow(0);
                  
                    for (int i = 0; i < columnCount; i++)
                    {
                        cell = row.CreateCell(i);
                        cell.SetCellValue(dataTable.Columns[i].ColumnName);
                    }


                    for (int i = 0; i < rowCount; i++)
                    {
                        row = sheet.CreateRow(i + 1);
                        for (int j = 0; j < columnCount; j++)
                        {
                            cell = row.CreateCell(j);
                            cell.SetCellValue(dataTable.Rows[i][j].ToString());
                        }
                    }

                    //保存路径
                    SaveFileDialog saveFileDialog = new SaveFileDialog();
                    saveFileDialog.Filter = "Excel 工作簿 (*.xls)|*.xls";
                    string strName = null;
                    if (saveFileDialog.ShowDialog() == DialogResult.OK)
                    {
                        strName = saveFileDialog.FileName;
                    }
                    
                    using (fs = File.OpenWrite(@strName))
                    {
                        workbook.Write(fs);
                        result = true;
                    }
                }
                return result;
            }
            catch (Exception ex)
            {
                if (fs != null)
                {
                    fs.Close();
                }
                return false;
            }
        }

技术群:1090519856

/// <summary> /// 导出Excel /// </summary> /// <param name="table"></param> /// <returns></returns> public bool ToExcel(DataTable table) { FileStream fs = new FileStream(this._filePath, FileMode.OpenOrCreate, FileAccess.ReadWrite); IWorkbook workBook = new HSSFWorkbook(); this._sheetName = this._sheetName.IsEmpty() ? "sheet1" : this._sheetName; ISheet sheet = workBook.CreateSheet(this._sheetName); //处理表格标题 IRow row = sheet.CreateRow(0); row.CreateCell(0).SetCellValue(this._title); sheet.AddMergedRegion(new CellRangeAddress(0, 0, 0, table.Columns.Count - 1)); row.Height = 500; ICellStyle cellStyle = workBook.CreateCellStyle(); IFont font = workBook.CreateFont(); font.FontName = "微软雅黑"; font.FontHeightInPoints = 17; cellStyle.SetFont(font); cellStyle.VerticalAlignment = VerticalAlignment.Center; cellStyle.Alignment = HorizontalAlignment.Center; row.Cells[0].CellStyle = cellStyle; //处理表格列头 row = sheet.CreateRow(1); for (int i = 0; i < table.Columns.Count; i++) { row.CreateCell(i).SetCellValue(table.Columns[i].ColumnName); row.Height = 350; sheet.AutoSizeColumn(i); } //处理数据内容 for (int i = 0; i < table.Rows.Count; i++) { row = sheet.CreateRow(2 + i); row.Height = 250; for (int j = 0; j < table.Columns.Count; j++) { row.CreateCell(j).SetCellValue(table.Rows[i][j].ToString()); sheet.SetColumnWidth(j, 256 * 15); } } //写入数据流 workBook.Write(fs); fs.Flush(); fs.Close(); return true; } /// <summary> /// 导出Excel /// </summary> /// <param name="table"></param> /// <param name="title"></param> /// <param name="sheetName"></param> /// <returns></returns> public bool ToExcel(DataTable table, string title, string sheetName, string filePath) { this._title = title; this._sheetName = sheetName; this._filePath = filePath; return ToExcel(table); }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值