一:第一张导出方法,简单快捷   请注意:一般表格都有真分页,查询数据时候注意把分页条件去掉#region 此处是获取的list数组 然后转table再调用ExportExcel

      var list="你的list数据库源"DataTable dt = new DataTable();dt.Columns.Add("序号", typeof(string));dt.Columns.Add("姓名", typeof(string));int datacount = 1;foreach (var item in list)//list给table赋值 { DataRow tr = dt.NewRow(); tr[0] = datacount; tr[1] = item.XM;  datacount++; }//然后调用
ExportExcel("dt","文件名字")//或者直接调用
ExportExcel("table数据源","文件名字")

/// <summary>/// 导出功能    此方法直接给table 和导出的文件名即可 已经封装好 直接调用/// </summary>/// <param name="dt">数据源</param>/// <param name="tablename">导出的名字</param>public void ExportExcel(DataTable dt, string filename){string path = AppDomain.CurrentDomain.BaseDirectory + @"" + filename + ".xls";WriteExcel(dt, path);System.IO.FileInfo filet = new System.IO.FileInfo(path);Response.Clear();Response.Charset = "GB2312";Response.ContentEncoding = System.Text.Encoding.UTF8;Response.AddHeader("Content-Disposition", "attachment; filename=" + Server.UrlEncode(filename + ".xls"));Response.AddHeader("Content-Length", filet.Length.ToString());Response.ContentType = "application/ms-excel";Response.WriteFile(filet.FullName);Response.End();}public void WriteExcel(DataTable dt, string path){try{long totalCount = dt.Rows.Count;long rowRead = 0;float percent = 0;System.IO.StreamWriter sw = new System.IO.StreamWriter(path, false, System.Text.Encoding.GetEncoding("gb2312"));System.Text.StringBuilder sb = new System.Text.StringBuilder();for (int k = 0; k < dt.Columns.Count; k++){sb.Append(dt.Columns[k].ColumnName.ToString() + "     \t");}sb.Append(Environment.NewLine);for (int i = 0; i < dt.Rows.Count; i++){rowRead++;percent = ((float)(100 * rowRead)) / totalCount;for (int j = 0; j < dt.Columns.Count; j++){sb.Append(dt.Rows[i][j].ToString() + "\t");}sb.Append(Environment.NewLine);}sw.Write(sb.ToString());sw.Flush();sw.Close();}catch (Exception ex){}}此导出方式实际是.CSV(数字与纯文本格式)能用excel打开而已  所以在设置导出格式无能为力(如时间格式就会出现问题)


二:第二种,能改变导出excel格式

引用 NPOI文件来进行 导出,  也是封装好的, 只需要把相对应的引用文件  引用好直接调用就可以

引用到的NPOI 

请注意: 此方法无法用于AJAX ,可解决导出时间或者身份证显示######问题

 例子

    //前台调用导出按钮$("#WriteDoctor").click(function () {var StartTime = $("#startDate").val();var EndTime = $("#endDate").val();var Department = $(".drop_btn .drop_btn_val").text();var DoctorName = $(".drop_btn2 .drop_btn_val").text();if (Department == "全部") {Department = ""}if (DoctorName == "全部") {DoctorName = ""}window.location.href = "@Url.Action("WriteDoctor")?StartTime=" + StartTime + "&EndTime=" + EndTime ;})//后台方法public ActionResult WriteDoctor(DateTime StartTime){DataSet ds = 去查询数据库数据(DateTIme, StarTime);string paths = "table表名字" + DateTime.Now.ToString("yyyyMMdd") + ".xls"; NPOIHelper.ExportByWeb(ds, "table表名字" + DateTime.Now.ToString("yyyyMMdd"), paths);return Json(new { success = true }, JsonRequestBehavior.AllowGet);}

  

using NPOI.HPSF;
using NPOI.HSSF.UserModel;
using NPOI.SS.UserModel;
using NPOI.SS.Util;
using NPOI.XSSF.UserModel;
using System;
using System.Collections.Generic;
using System.Data;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Web; //引用  System.Web
using System.Collections.Generic;namespace DBUtility
{public class NPOIHelper{/// <summary>/// DataTable导出到Excel文件/// </summary>/// <param name="dtSource">源DataTable</param>/// <param name="strHeaderText">表头文本</param>/// <param name="strFileName">保存位置</param>public static void Export(DataTable dtSource, string strHeaderText, string strFileName){using (MemoryStream ms = Export(dtSource, strHeaderText)){using (FileStream fs = new FileStream(strFileName, FileMode.Create, FileAccess.Write)){byte[] data = ms.ToArray();fs.Write(data, 0, data.Length);fs.Flush();}}}/// <summary>/// DataTable导出到Excel的MemoryStream/// </summary>/// <param name="dtSource">源DataTable</param>/// <param name="strHeaderText">表头文本</param>public static MemoryStream Export(DataTable dtSource, string strHeaderText){HSSFWorkbook workbook = new HSSFWorkbook();ISheet sheet = workbook.CreateSheet();#region 右击文件 属性信息{DocumentSummaryInformation dsi = PropertySetFactory.CreateDocumentSummaryInformation();dsi.Company = "";workbook.DocumentSummaryInformation = dsi;SummaryInformation si = PropertySetFactory.CreateSummaryInformation();si.Author = ""; //填加xls文件作者信息si.ApplicationName = ""; //填加xls文件创建程序信息si.LastAuthor = ""; //填加xls文件最后保存者信息si.Comments = ""; //填加xls文件作者信息si.Title = ""; //填加xls文件标题信息si.Subject = "";//填加文件主题信息si.CreateDateTime = DateTime.Now;workbook.SummaryInformation = si;}#endregionICellStyle dateStyle = workbook.CreateCellStyle();IDataFormat format = workbook.CreateDataFormat();ICellStyle dataStyle = workbook.CreateCellStyle();dateStyle.DataFormat = format.GetFormat("yyyy-mm-dd");dateStyle.Alignment = HorizontalAlignment.Center;dateStyle.VerticalAlignment = VerticalAlignment.Center;dateStyle.BorderBottom = BorderStyle.Thin;dateStyle.BorderLeft = BorderStyle.Thin;dateStyle.BorderRight = BorderStyle.Thin;dateStyle.BorderTop = BorderStyle.Thin;//-----dataStyle.Alignment = HorizontalAlignment.Center;dataStyle.VerticalAlignment = VerticalAlignment.Center;dataStyle.BorderBottom = BorderStyle.Thin;dataStyle.BorderLeft = BorderStyle.Thin;dataStyle.BorderRight = BorderStyle.Thin;dataStyle.BorderTop = BorderStyle.Thin;//取得列宽int[] arrColWidth = new int[dtSource.Columns.Count];foreach (DataColumn item in dtSource.Columns){arrColWidth[item.Ordinal] = Encoding.GetEncoding(936).GetBytes(item.ColumnName.ToString()).Length;}for (int i = 0; i < dtSource.Rows.Count; i++){for (int j = 0; j < dtSource.Columns.Count; j++){int intTemp = Encoding.GetEncoding(936).GetBytes(dtSource.Rows[i][j].ToString()).Length;if (intTemp > arrColWidth[j]){arrColWidth[j] = intTemp;}}}int rowIndex = 0;foreach (DataRow row in dtSource.Rows){#region 新建表,填充表头,填充列头,样式if (rowIndex == 65535 || rowIndex == 0){if (rowIndex != 0){sheet = workbook.CreateSheet();}#region 表头及样式{IRow headerRow = sheet.CreateRow(0);headerRow.HeightInPoints = 25;headerRow.CreateCell(0).SetCellValue(strHeaderText);ICellStyle headStyle = workbook.CreateCellStyle();headStyle.Alignment = HorizontalAlignment.Center;headStyle.VerticalAlignment = VerticalAlignment.Center;IFont font = workbook.CreateFont();font.FontHeightInPoints = 12;font.Boldweight = 600;headStyle.SetFont(font);headerRow.GetCell(0).CellStyle = headStyle;sheet.AddMergedRegion(new CellRangeAddress(0, 0, 0, dtSource.Columns.Count - 1));}#endregion#region 列头及样式{IRow headerRow = sheet.CreateRow(1);ICellStyle headStyle = workbook.CreateCellStyle();headStyle.Alignment = HorizontalAlignment.Center;headStyle.VerticalAlignment = VerticalAlignment.Center;headStyle.BorderBottom = BorderStyle.Thin;headStyle.BorderLeft = BorderStyle.Thin;headStyle.BorderRight = BorderStyle.Thin;headStyle.BorderTop = BorderStyle.Thin;IFont font = workbook.CreateFont();font.FontHeightInPoints = 10;font.Boldweight = 600;headStyle.SetFont(font);foreach (DataColumn column in dtSource.Columns){headerRow.CreateCell(column.Ordinal).SetCellValue(column.ColumnName);headerRow.GetCell(column.Ordinal).CellStyle = headStyle;//设置列宽sheet.SetColumnWidth(column.Ordinal, (arrColWidth[column.Ordinal] + 1) * 256);}//  headerRow.Dispose();
                    }#endregionrowIndex = 2;}#endregion#region 填充内容IRow dataRow = sheet.CreateRow(rowIndex);foreach (DataColumn column in dtSource.Columns){ICell newCell = dataRow.CreateCell(column.Ordinal);string drValue = row[column].ToString();switch (column.DataType.ToString()){case "System.String"://字符串类型
                            newCell.SetCellValue(drValue);newCell.CellStyle = dataStyle;break;case "System.DateTime"://日期类型
                            DateTime dateV;DateTime.TryParse(drValue, out dateV);newCell.SetCellValue(dateV);newCell.CellStyle = dateStyle;//格式化显示break;case "System.Boolean"://布尔型bool boolV = false;bool.TryParse(drValue, out boolV);newCell.SetCellValue(boolV);newCell.CellStyle = dataStyle;break;case "System.Int16"://整型case "System.Int32":case "System.Int64":case "System.Byte":int intV = 0;int.TryParse(drValue, out intV);newCell.SetCellValue(intV);newCell.CellStyle = dataStyle;break;case "System.Decimal"://浮点型case "System.Double":double doubV = 0;double.TryParse(drValue, out doubV);newCell.SetCellValue(doubV);newCell.CellStyle = dataStyle;break;case "System.DBNull"://空值处理newCell.SetCellValue("");newCell.CellStyle = dataStyle;break;default:newCell.SetCellValue("");newCell.CellStyle = dataStyle;break;}}#endregionrowIndex++;}using (MemoryStream ms = new MemoryStream()){workbook.Write(ms);ms.Flush();ms.Position = 0;////workbook.c// workbook//workbook.Dispose();//一般只用写这一个就OK了,他会遍历并释放所有资源,但当前版本有问题所以只释放sheetreturn ms;}}/// <summary>/// DataTable导出到Excel的MemoryStream/// </summary>/// <param name="dtSource">源DataSet</param>/// <param name="strHeaderText">表头文本</param>public static MemoryStream ExportMoreTable(DataSet dsSource, string strHeaderText){HSSFWorkbook workbook = new HSSFWorkbook();foreach (DataTable dtSource in dsSource.Tables){ISheet sheet = workbook.CreateSheet();#region 右击文件 属性信息{DocumentSummaryInformation dsi = PropertySetFactory.CreateDocumentSummaryInformation();dsi.Company = "";workbook.DocumentSummaryInformation = dsi;SummaryInformation si = PropertySetFactory.CreateSummaryInformation();si.Author = ""; //填加xls文件作者信息si.ApplicationName = ""; //填加xls文件创建程序信息si.LastAuthor = ""; //填加xls文件最后保存者信息si.Comments = ""; //填加xls文件作者信息si.Title = ""; //填加xls文件标题信息si.Subject = "";//填加文件主题信息si.CreateDateTime = DateTime.Now;workbook.SummaryInformation = si;}#endregionICellStyle dateStyle = workbook.CreateCellStyle();IDataFormat format = workbook.CreateDataFormat();ICellStyle dataStyle = workbook.CreateCellStyle();dateStyle.DataFormat = format.GetFormat("yyyy-mm-dd");dateStyle.Alignment = HorizontalAlignment.Center;dateStyle.VerticalAlignment = VerticalAlignment.Center;dateStyle.BorderBottom = BorderStyle.Thin;dateStyle.BorderLeft = BorderStyle.Thin;dateStyle.BorderRight = BorderStyle.Thin;dateStyle.BorderTop = BorderStyle.Thin;//-----dataStyle.Alignment = HorizontalAlignment.Center;dataStyle.VerticalAlignment = VerticalAlignment.Center;dataStyle.BorderBottom = BorderStyle.Thin;dataStyle.BorderLeft = BorderStyle.Thin;dataStyle.BorderRight = BorderStyle.Thin;dataStyle.BorderTop = BorderStyle.Thin;//取得列宽int[] arrColWidth = new int[dtSource.Columns.Count];foreach (DataColumn item in dtSource.Columns){arrColWidth[item.Ordinal] = Encoding.GetEncoding(936).GetBytes(item.ColumnName.ToString()).Length;}for (int i = 0; i < dtSource.Rows.Count; i++){for (int j = 0; j < dtSource.Columns.Count; j++){int intTemp = Encoding.GetEncoding(936).GetBytes(dtSource.Rows[i][j].ToString()).Length;if (intTemp > arrColWidth[j]){arrColWidth[j] = intTemp;}}}int rowIndex = 0;foreach (DataRow row in dtSource.Rows){#region 新建表,填充表头,填充列头,样式if (rowIndex == 65535 || rowIndex == 0){if (rowIndex != 0){sheet = workbook.CreateSheet();}#region 表头及样式{IRow headerRow = sheet.CreateRow(0);headerRow.HeightInPoints = 25;headerRow.CreateCell(0).SetCellValue(strHeaderText);ICellStyle headStyle = workbook.CreateCellStyle();headStyle.Alignment = HorizontalAlignment.Center;headStyle.VerticalAlignment = VerticalAlignment.Center;IFont font = workbook.CreateFont();font.FontHeightInPoints = 12;font.Boldweight = 600;headStyle.SetFont(font);headerRow.GetCell(0).CellStyle = headStyle;sheet.AddMergedRegion(new CellRangeAddress(0, 0, 0, dtSource.Columns.Count - 1));}#endregion#region 列头及样式{IRow headerRow = sheet.CreateRow(1);ICellStyle headStyle = workbook.CreateCellStyle();headStyle.Alignment = HorizontalAlignment.Center;headStyle.VerticalAlignment = VerticalAlignment.Center;headStyle.BorderBottom = BorderStyle.Thin;headStyle.BorderLeft = BorderStyle.Thin;headStyle.BorderRight = BorderStyle.Thin;headStyle.BorderTop = BorderStyle.Thin;IFont font = workbook.CreateFont();font.FontHeightInPoints = 10;font.Boldweight = 600;headStyle.SetFont(font);foreach (DataColumn column in dtSource.Columns){headerRow.CreateCell(column.Ordinal).SetCellValue(column.ColumnName);headerRow.GetCell(column.Ordinal).CellStyle = headStyle;//设置列宽sheet.SetColumnWidth(column.Ordinal, (arrColWidth[column.Ordinal] + 1) * 256);}//  headerRow.Dispose();
                        }#endregionrowIndex = 2;}#endregion#region 填充内容IRow dataRow = sheet.CreateRow(rowIndex);foreach (DataColumn column in dtSource.Columns){ICell newCell = dataRow.CreateCell(column.Ordinal);string drValue = row[column].ToString();switch (column.DataType.ToString()){case "System.String"://字符串类型
                                newCell.SetCellValue(drValue);newCell.CellStyle = dataStyle;break;case "System.DateTime"://日期类型
                                DateTime dateV;DateTime.TryParse(drValue, out dateV);newCell.SetCellValue(dateV);newCell.CellStyle = dateStyle;//格式化显示break;case "System.Boolean"://布尔型bool boolV = false;bool.TryParse(drValue, out boolV);newCell.SetCellValue(boolV);newCell.CellStyle = dataStyle;break;case "System.Int16"://整型case "System.Int32":case "System.Int64":case "System.Byte":int intV = 0;int.TryParse(drValue, out intV);newCell.SetCellValue(intV);newCell.CellStyle = dataStyle;break;case "System.Decimal"://浮点型case "System.Double":double doubV = 0;double.TryParse(drValue, out doubV);newCell.SetCellValue(doubV);newCell.CellStyle = dataStyle;break;case "System.DBNull"://空值处理newCell.SetCellValue("");newCell.CellStyle = dataStyle;break;default:newCell.SetCellValue("");newCell.CellStyle = dataStyle;break;}}#endregionrowIndex++;}}using (MemoryStream ms = new MemoryStream()){workbook.Write(ms);ms.Flush();ms.Position = 0;////workbook.c// workbook//workbook.Dispose();//一般只用写这一个就OK了,他会遍历并释放所有资源,但当前版本有问题所以只释放sheetreturn ms;}}///// <summary>///// 用于Web网页 直接导出///// </summary>///// <param name="dtSource">源DataTable</param>///// <param name="strHeaderText">表头文本</param>///// <param name="strFileName">文件名</param>public static void ExportByWeb(DataSet dtSource, string strHeaderText, string strFileName){HttpContext curContext = HttpContext.Current;// 设置编码和附件格式curContext.Response.ContentType = "application/vnd.ms-excel";curContext.Response.ContentEncoding = Encoding.UTF8;curContext.Response.Charset = "";curContext.Response.AppendHeader("Content-Disposition","attachment;filename=" + HttpUtility.UrlEncode(strFileName, Encoding.UTF8));curContext.Response.BinaryWrite(ExportMoreTable(dtSource, strHeaderText).GetBuffer());curContext.Response.End();}public static void ExportByWeb(MemoryStream file, string strFileName){HttpContext curContext = HttpContext.Current;// 设置编码和附件格式curContext.Response.ContentType = "application/vnd.ms-excel";curContext.Response.ContentEncoding = Encoding.UTF8;curContext.Response.Charset = "";curContext.Response.AppendHeader("Content-Disposition","attachment;filename=" + HttpUtility.UrlEncode(strFileName, Encoding.UTF8));curContext.Response.BinaryWrite(file.ToArray());curContext.Response.End();}/// <summary>读取excel/// 默认第一行为标头/// </summary>/// <param name="strFileName">excel文档路径</param>/// <returns></returns>public static DataTable Import(string strFileName){DataTable dt = new DataTable();//XSSFWorkbook xhssfworkbook;
            HSSFWorkbook hssfworkbook;using (FileStream file = new FileStream(strFileName, FileMode.Open, FileAccess.Read)){hssfworkbook = new HSSFWorkbook(file);}ISheet sheet = hssfworkbook.GetSheetAt(0);System.Collections.IEnumerator rows = sheet.GetRowEnumerator();IRow headerRow = sheet.GetRow(0);int cellCount = headerRow.LastCellNum;for (int j = 0; j < cellCount; j++){ICell cell = headerRow.GetCell(j);dt.Columns.Add(cell.ToString());}for (int i = (sheet.FirstRowNum + 1); i <= sheet.LastRowNum; i++){IRow row = sheet.GetRow(i);DataRow dataRow = dt.NewRow();for (int j = row.FirstCellNum; j < cellCount; j++){if (row.GetCell(j) != null)dataRow[j] = row.GetCell(j).ToString();}dt.Rows.Add(dataRow);}return dt;}public static DataTable ImportOther(string strFileName){DataTable dt = new DataTable();HSSFWorkbook hssfworkbook;XSSFWorkbook xhssfworkbook;ISheet sheet = null;using (FileStream file = new FileStream(strFileName, FileMode.Open, FileAccess.Read)){if (!strFileName.Contains(".xlsx")){hssfworkbook = new HSSFWorkbook(file);sheet = hssfworkbook.GetSheetAt(0);}else{xhssfworkbook = new XSSFWorkbook(file);sheet = xhssfworkbook.GetSheetAt(0);}}System.Collections.IEnumerator rows = sheet.GetRowEnumerator();IRow headerRow = sheet.GetRow(0);int cellCount = headerRow.LastCellNum;for (int j = 0; j < cellCount; j++){ICell cell = headerRow.GetCell(j);dt.Columns.Add(cell.ToString());}for (int i = (sheet.FirstRowNum + 1); i <= sheet.LastRowNum; i++){IRow row = sheet.GetRow(i);DataRow dataRow = dt.NewRow();for (int j = row.FirstCellNum; j < cellCount; j++){if (row.GetCell(j) != null)dataRow[j] = row.GetCell(j).ToString();}dt.Rows.Add(dataRow);}return dt;}/// <summary>/// 将datatable导出为excel/// 图片默认显示在excel 第二行最后一列/// </summary>/// <param name="table">数据源</param>/// <param name="excelInfo">Tuple<excel列名,datatable列名,excel列宽度></param>/// <param name="sheetName">工作簿名称</param>/// <param name="picBytes">导出图片字节流</param>/// <param name="mergedRegion">合并单元格信息:null不合并单元格</param>/// <returns></returns>public static MemoryStream ExportToExcel2007(DataTable table, List<Tuple<string, string, int>> excelInfo, string sheetName, byte[] picBytes, List<CellRangeAddress> mergedRegion){MemoryStream ms = new MemoryStream();try{using (table){IWorkbook workbook = new XSSFWorkbook();ISheet sheet = workbook.CreateSheet(sheetName);for (int i = 0; i < excelInfo.Count; i++){sheet.SetColumnWidth(i, excelInfo[i].Item3 * 256);}IRow headerRow = sheet.CreateRow(0);for (int i = 0; i < excelInfo.Count; i++){headerRow.CreateCell(i).SetCellValue(excelInfo[i].Item1);}int rowIndex = 1;foreach (DataRow row in table.Rows){IRow dataRow = sheet.CreateRow(rowIndex);for (int i = 0; i < excelInfo.Count; i++){dataRow.CreateCell(i).SetCellValue(row[excelInfo[i].Item2].ToString());}rowIndex++;}//合并单元格if (mergedRegion != null && mergedRegion.Count > 0){foreach (CellRangeAddress cellRangeAddress in mergedRegion){//设置一个合并单元格区域,使用上下左右定义CellRangeAddress区域//CellRangeAddress四个参数为:起始行,结束行,起始列,结束列
                            sheet.AddMergedRegion(cellRangeAddress);ICellStyle style = workbook.CreateCellStyle();//设置单元格的样式:水平对齐居中style.Alignment = HorizontalAlignment.Center;//将新的样式赋给单元格var cell = sheet.GetRow(cellRangeAddress.FirstRow).GetCell(cellRangeAddress.FirstColumn);cell.CellStyle = style;}}//插入图片if (picBytes != null && picBytes.Length > 0){var row1 = 2;var col1 = excelInfo.Count + 1;/* Add Picture to Workbook, Specify picture type as PNG and Get an Index */int pictureIdx = workbook.AddPicture(picBytes, NPOI.SS.UserModel.PictureType.PNG);  //添加图片/* Create the drawing container */XSSFDrawing drawing = (XSSFDrawing)sheet.CreateDrawingPatriarch();/* Create an anchor point */XSSFClientAnchor anchor = new XSSFClientAnchor(0, 0, 0, 240, col1, row1, col1 + 1, row1 + 1);/* Invoke createPicture and pass the anchor point and ID */XSSFPicture picture = (XSSFPicture)drawing.CreatePicture(anchor, pictureIdx);/* Call resize method, which resizes the image */picture.Resize();picBytes = null;}workbook.Write(ms);// workbook.Close();
                }}catch (Exception ex){ms = null;}return ms;}/// <summary>/// 将datatable导出为excel/// 图片默认显示在excel 第二行最后一列/// </summary>/// <param name="table">数据源</param>/// <param name="excelInfo">Tuple<excel列名,datatable列名,excel列宽度></param>/// <param name="sheetName">工作簿名称</param>/// <param name="picBytes">导出图片字节流</param>/// <param name="mergedRegion">合并单元格信息:null不合并单元格</param>/// <returns></returns>public static MemoryStream ExportToExcel97(DataTable table, List<Tuple<string, string, int>> excelInfo, string sheetName, byte[] picBytes, List<CellRangeAddress> mergedRegion){MemoryStream ms = new MemoryStream();try{using (table){IWorkbook workbook = new HSSFWorkbook();ISheet sheet = workbook.CreateSheet(sheetName);for (int i = 0; i < excelInfo.Count; i++){sheet.SetColumnWidth(i, excelInfo[i].Item3 * 256);}IRow headerRow = sheet.CreateRow(0);for (int i = 0; i < excelInfo.Count; i++){headerRow.CreateCell(i).SetCellValue(excelInfo[i].Item1);}int rowIndex = 1;foreach (DataRow row in table.Rows){IRow dataRow = sheet.CreateRow(rowIndex);for (int i = 0; i < excelInfo.Count; i++){dataRow.CreateCell(i).SetCellValue(row[excelInfo[i].Item2].ToString());}rowIndex++;}//合并单元格if (mergedRegion != null && mergedRegion.Count > 0){foreach (CellRangeAddress cellRangeAddress in mergedRegion){//设置一个合并单元格区域,使用上下左右定义CellRangeAddress区域//CellRangeAddress四个参数为:起始行,结束行,起始列,结束列
                            sheet.AddMergedRegion(cellRangeAddress);ICellStyle style = workbook.CreateCellStyle();//设置单元格的样式:水平对齐居中style.Alignment = HorizontalAlignment.Center;//将新的样式赋给单元格var cell = sheet.GetRow(cellRangeAddress.FirstRow).GetCell(cellRangeAddress.FirstColumn);cell.CellStyle = style;}}//插入图片if (picBytes != null && picBytes.Length > 0){var row1 = 2;var col1 = excelInfo.Count + 1;int pictureIdx = workbook.AddPicture(picBytes, NPOI.SS.UserModel.PictureType.PNG);  //添加图片
HSSFPatriarch patriarch = (HSSFPatriarch)sheet.CreateDrawingPatriarch();HSSFClientAnchor anchor = new HSSFClientAnchor(0, 0, 0, 240, col1, row1, col1 + 1, row1 + 1);//图片位置,图片左上角为(col, row)HSSFPicture pict = (HSSFPicture)patriarch.CreatePicture(anchor, pictureIdx);pict.Resize(); //用图片原始大小来显示picBytes = null;}workbook.Write(ms);ms.Flush();ms.Position = 0;}}catch (Exception ex){ms = null;}return ms;}/// <param name="hssfworkbook">Excel操作类</param>/// <param name="fontname">字体名</param>/// <param name="fontcolor">字体颜色</param>/// <param name="fontsize">字体大小</param>/// <returns></returns>//public static IFont GetFontStyle(HSSFWorkbook hssfworkbook, string fontfamily, HSSFColor fontcolor, int fontsize)//{//    IFont font1 = hssfworkbook.CreateFont();//    if (string.IsNullOrEmpty(fontfamily))//    {//        font1.FontName = fontfamily;//    }//    if (fontcolor != null)//    {//        font1.Color = fontcolor.Indexed;//    }//    font1.IsItalic = true;//    font1.FontHeightInPoints = (short)fontsize;//    return font1;//}/// <param name="hssfworkbook">Excel操作类</param>/// <param name="font">单元格字体</param>/// <param name="fillForegroundColor">图案的颜色</param>/// <param name="fillPattern">图案样式</param>/// <param name="fillBackgroundColor">单元格背景</param>/// <param name="ha">垂直对齐方式</param>/// <param name="va">垂直对齐方式</param>/// <returns></returns>//public static ICellStyle GetCellStyle(HSSFWorkbook hssfworkbook, IFont font, NPOI.HSSF.Util.HSSFColor fillForegroundColor, FillPattern fillPattern, HSSFColor fillBackgroundColor, HorizontalAlignment ha, VerticalAlignment va)//{//    ICellStyle cellstyle = hssfworkbook.CreateCellStyle();//    cellstyle.FillPattern = fillPattern;//    cellstyle.Alignment = ha;//    cellstyle.VerticalAlignment = va;//    if (fillForegroundColor != null)//    {//        cellstyle.FillForegroundColor = fillForegroundColor.Indexed;//    }//    if (fillBackgroundColor != null)//    {//        cellstyle.FillBackgroundColor = fillBackgroundColor.Indexed;//    }//    if (font != null)//    {//        cellstyle.SetFont(font);//    }//    //有边框//    cellstyle.BorderBottom = BorderStyle.Thin;//    cellstyle.BorderLeft = BorderStyle.Thin;//    cellstyle.BorderRight = BorderStyle.Thin;//    cellstyle.BorderTop = BorderStyle.Thin;//    return cellstyle;//}/// <param name="sheet">要合并单元格所在的sheet</param>/// <param name="rowstart">开始行的索引</param>/// <param name="rowend">结束行的索引</param>/// <param name="colstart">开始列的索引</param>/// <param name="colend">结束列的索引</param>public static void SetCellRangeAddress(ISheet sheet, int rowstart, int rowend, int colstart, int colend){CellRangeAddress cellRangeAddress = new CellRangeAddress(rowstart, rowend, colstart, colend);sheet.AddMergedRegion(cellRangeAddress);}}
}

转载于:https://www.cnblogs.com/LZXX/p/8761766.html

c#_导出table功能相关推荐

  1. java获取excle表格对象_Java使用excel工具类导出对象功能示例

    本文实例讲述了Java使用excel工具类导出对象功能.分享给大家供大家参考,具体如下: package com.gcloud.common; import org.apache.poi.ss.use ...

  2. vue表单中批量导入功能_vue实战(11)——vue+element UI实现表格数据导出Excel功能

    一.应用场景 按照需求导出功能分为勾选批量导出及按照查询结果导出,考虑到接口操作导出的复杂性,因此实现了js控制导出的功能 导出功能截图 二.安装相关依赖 cnpm install --save xl ...

  3. ruoyi框架默认的导出Excel功能代码简析

    ruoyi框架默认导出Excel功能 项目使用的是RuoYi Bootstrap多模块版本4.7.2,启动项目后会有默认的导出功能.包括使用ruoyi自带代码生成器,都会有导出功能的附带.接下就讲解一 ...

  4. jQuery实现表格导出Excel功能

    jQuery实现表格导出Excel功能 jquery实现表格导出Excel功能,这里我们用到jquery的一个小插件:jquery-table2excel jquery-table2excel线上引用 ...

  5. mysql只能导出65535条_导出Excel超过65535条限制解决方案

    使用poi导出excel的时候如果数据过多,超过65535条会报错,因为excel2003一个sheet表最多导出65535条,excel2007是10万4000多条限制. 因此遇到这种excel导出 ...

  6. vue+iView实现导入与导出excel功能

    vue+iView实现导入与导出excel功能 一,需求: 1,导入导出的必要性 导入与导出在日常项目开发中经常用到, 批量导入功能可以快速插入添加数据. 导出功能则可方便直观明了拿到所需展示的重要数 ...

  7. vue导出excel功能实现

    vue导出excel功能实现 第一步安装依赖包 第二步在项目中assets创建一个新的文件夹js用于存放Blob和Export2Excel两个js文件 第三步在你那个组件中使用 写事件方法 Expor ...

  8. niva mysql_CentOS下,MySQL数据库的导出导入功能验证

    导读 正文 问题起源:MysqL创建集群需要maria-galera版本 而现在安装的数据库中已经有了一些数据,不想再重新输入数据. 删除数据库,数据导出导入功能 2.1.1 删除StorOS的数据库 ...

  9. 关于文件导出(下载)功能不兼容IE浏览器的解决方案

    关于文件导出(下载)功能不兼容IE浏览器的解决方案 参考文章: (1)关于文件导出(下载)功能不兼容IE浏览器的解决方案 (2)https://www.cnblogs.com/padaleidelei ...

最新文章

  1. 判断鼠标不在控件上_基础设施:一套基本控件
  2. C# DropDownList 绑定枚举类
  3. 神经网络调参batchsize对网络性能影响
  4. PAT甲级1064 Complete Binary Search Tree (30分):[C++题解]完全二叉搜索树BST
  5. mybatis-查询过程
  6. RabbitMQ消息自动重新入队
  7. java web权限_Javaweb权限管理设计思路
  8. URAL 1876 Centipede's Morning (机智)
  9. java程序运行时,数据的存储地!
  10. ssm框架返回html,ssm框架controller层返回json格式数据到页面
  11. STM32F072单片机的低功耗实验/STOP模式低功耗调试
  12. 最新中国数据中心排行榜
  13. 造移动厕所的,转做核酸采样亭。火了
  14. 蓝桥杯 人民币金额大写 格式转换
  15. JUNIPER防火墙网页无法登陆时后台配置
  16. 2022-03-11 工作记录--PHP-eq(表示等于)、 neq(表示不等于)
  17. 程序员学c语言吗,为什么程序员要学C语言
  18. 计算机实训前言研究内容,计算机专业实践论文提纲模板 计算机专业实践论文提纲怎样写...
  19. NLP入门概览(3)—— 神经网络语言模型、词向量
  20. 关于出现IllegalArgumentException异常的可能原因

热门文章

  1. 数据结构之树:树的介绍——9
  2. 2017年php还能火多久,PHP还会火吗?
  3. axios请求拦截器、响应拦截器、vue-router路由导航守卫的使用(案例)
  4. 1+X web中级 Laravel学习笔记——blade模版
  5. Joi验证模块的使用
  6. fastapi 用户指南(路径参数、查询参数、请求体)
  7. ZooKeeper 保证数据一致性
  8. 程序员面试金典 - 面试题 17.05. 字母与数字(哈希map+思维转换)
  9. LeetCode 629. K个逆序对数组(DP)
  10. LeetCode 138. 复制带随机指针的链表(哈希 / 深拷贝)