第一种:使用 Microsoft.Office.Interop.Excel.dll

首先需要安装 office 的 excel,然后再找到 Microsoft.Office.Interop.Excel.dll 组件,添加到引用。

 View Code

public void ExportExcel(DataTable dt){if (dt != null){Microsoft.Office.Interop.Excel.Application excel = new Microsoft.Office.Interop.Excel.Application();if (excel == null){return;}//设置为不可见,操作在后台执行,为 true 的话会打开 Excelexcel.Visible = false;//打开时设置为全屏显式//excel.DisplayFullScreen = true;//初始化工作簿Microsoft.Office.Interop.Excel.Workbooks workbooks = excel.Workbooks;//新增加一个工作簿,Add()方法也可以直接传入参数 trueMicrosoft.Office.Interop.Excel.Workbook workbook = workbooks.Add(Microsoft.Office.Interop.Excel.XlWBATemplate.xlWBATWorksheet);//同样是新增一个工作簿,但是会弹出保存对话框//Microsoft.Office.Interop.Excel.Workbook workbook = excel.Application.Workbooks.Add(true);//新增加一个 Excel 表(sheet)Microsoft.Office.Interop.Excel.Worksheet worksheet = (Microsoft.Office.Interop.Excel.Worksheet)workbook.Worksheets[1];//设置表的名称worksheet.Name = dt.TableName;try{//创建一个单元格Microsoft.Office.Interop.Excel.Range range;int rowIndex = 1;       //行的起始下标为 1int colIndex = 1;       //列的起始下标为 1//设置列名for (int i = 0; i < dt.Columns.Count; i++){//设置第一行,即列名worksheet.Cells[rowIndex, colIndex + i] = dt.Columns[i].ColumnName;//获取第一行的每个单元格range = worksheet.Cells[rowIndex, colIndex + i];//设置单元格的内部颜色range.Interior.ColorIndex = 33;//字体加粗range.Font.Bold = true;//设置为黑色range.Font.Color = 0;//设置为宋体range.Font.Name = "Arial";//设置字体大小range.Font.Size = 12;//水平居中range.HorizontalAlignment = Microsoft.Office.Interop.Excel.XlHAlign.xlHAlignCenter;//垂直居中range.VerticalAlignment = Microsoft.Office.Interop.Excel.XlVAlign.xlVAlignCenter;}//跳过第一行,第一行写入了列名rowIndex++;//写入数据for (int i = 0; i < dt.Rows.Count; i++){for (int j = 0; j < dt.Columns.Count; j++){worksheet.Cells[rowIndex + i, colIndex + j] = dt.Rows[i][j].ToString();}}//设置所有列宽为自动列宽//worksheet.Columns.AutoFit();//设置所有单元格列宽为自动列宽worksheet.Cells.Columns.AutoFit();//worksheet.Cells.EntireColumn.AutoFit();//是否提示,如果想删除某个sheet页,首先要将此项设为fasle。excel.DisplayAlerts = false;//保存写入的数据,这里还没有保存到磁盘workbook.Saved = true;//设置导出文件路径string path = HttpContext.Current.Server.MapPath("Export/");//设置新建文件路径及名称string savePath = path + DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss") + ".xlsx";//创建文件FileStream file = new FileStream(savePath, FileMode.CreateNew);//关闭释放流,不然没办法写入数据file.Close();file.Dispose();//保存到指定的路径workbook.SaveCopyAs(savePath);//还可以加入以下方法输出到浏览器下载FileInfo fileInfo = new FileInfo(savePath);OutputClient(fileInfo);}catch(Exception ex){}finally{workbook.Close(false, Type.Missing, Type.Missing);workbooks.Close();//关闭退出excel.Quit();//释放 COM 对象Marshal.ReleaseComObject(worksheet);Marshal.ReleaseComObject(workbook);Marshal.ReleaseComObject(workbooks);Marshal.ReleaseComObject(excel);worksheet = null;workbook = null;workbooks = null;excel = null;GC.Collect();}}}

 View Code

public void OutputClient(FileInfo file){HttpContext.Current.Response.Buffer = true;HttpContext.Current.Response.Clear();HttpContext.Current.Response.ClearHeaders();HttpContext.Current.Response.ClearContent();HttpContext.Current.Response.ContentType = "application/vnd.ms-excel";//导出到 .xlsx 格式不能用时,可以试试这个//HttpContext.Current.Response.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";HttpContext.Current.Response.AddHeader("Content-Disposition", string.Format("attachment; filename={0}.xlsx", DateTime.Now.ToString("yyyy-MM-dd-HH-mm")));HttpContext.Current.Response.Charset = "GB2312";HttpContext.Current.Response.ContentEncoding = Encoding.GetEncoding("GB2312");HttpContext.Current.Response.AddHeader("Content-Length", file.Length.ToString());HttpContext.Current.Response.WriteFile(file.FullName);HttpContext.Current.Response.Flush();HttpContext.Current.Response.Close();}

第一种方法性能实在是不敢恭维,而且局限性太多。首先必须要安装 office(如果计算机上面没有的话),而且导出时需要指定文件保存的路径。也可以输出到浏览器下载,当然前提是已经保存写入数据。

第二种:使用 Aspose.Cells.dll

这个 Aspose.Cells 是 Aspose 公司推出的导出 Excel 的控件,不依赖 Office,商业软件,收费的。

可以参考:http://www.cnblogs.com/xiaofengfeng/archive/2012/09/27/2706211.html#top

 View Code

public void ExportExcel(DataTable dt){try{//获取指定虚拟路径的物理路径string path = HttpContext.Current.Server.MapPath("DLL/") + "License.lic";//读取 License 文件Stream stream = (Stream)File.OpenRead(path);//注册 LicenseAspose.Cells.License li = new Aspose.Cells.License();li.SetLicense(stream);//创建一个工作簿Aspose.Cells.Workbook workbook = new Aspose.Cells.Workbook();//创建一个 sheet 表Aspose.Cells.Worksheet worksheet = workbook.Worksheets[0];//设置 sheet 表名称worksheet.Name = dt.TableName;Aspose.Cells.Cell cell;int rowIndex = 0;   //行的起始下标为 0int colIndex = 0;   //列的起始下标为 0//设置列名for (int i = 0; i < dt.Columns.Count; i++){//获取第一行的每个单元格cell = worksheet.Cells[rowIndex, colIndex + i];//设置列名cell.PutValue(dt.Columns[i].ColumnName);//设置字体cell.Style.Font.Name = "Arial";//设置字体加粗cell.Style.Font.IsBold = true;//设置字体大小cell.Style.Font.Size = 12;//设置字体颜色cell.Style.Font.Color = System.Drawing.Color.Black;//设置背景色cell.Style.BackgroundColor = System.Drawing.Color.LightGreen;}//跳过第一行,第一行写入了列名rowIndex++;//写入数据for (int i = 0; i < dt.Rows.Count; i++){for (int j = 0; j < dt.Columns.Count; j++){cell = worksheet.Cells[rowIndex + i, colIndex + j];cell.PutValue(dt.Rows[i][j]);}}//自动列宽worksheet.AutoFitColumns();//设置导出文件路径path = HttpContext.Current.Server.MapPath("Export/");//设置新建文件路径及名称string savePath = path + DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss") + ".xlsx";//创建文件FileStream file = new FileStream(savePath, FileMode.CreateNew);//关闭释放流,不然没办法写入数据file.Close();file.Dispose();//保存至指定路径workbook.Save(savePath);//或者使用下面的方法,输出到浏览器下载。//byte[] bytes = workbook.SaveToStream().ToArray();//OutputClient(bytes);worksheet = null;workbook = null;}catch(Exception ex){}}

 View Code

public void OutputClient(byte[] bytes){HttpContext.Current.Response.Buffer = true;HttpContext.Current.Response.Clear();HttpContext.Current.Response.ClearHeaders();HttpContext.Current.Response.ClearContent();HttpContext.Current.Response.ContentType = "application/vnd.ms-excel";HttpContext.Current.Response.AddHeader("Content-Disposition", string.Format("attachment; filename={0}.xls", DateTime.Now.ToString("yyyy-MM-dd-HH-mm")));HttpContext.Current.Response.Charset = "GB2312";HttpContext.Current.Response.ContentEncoding = Encoding.GetEncoding("GB2312");HttpContext.Current.Response.BinaryWrite(bytes);HttpContext.Current.Response.Flush();HttpContext.Current.Response.Close();}

设置单元格格式为文本方法:

cell = worksheet.Cells[rowIndex, colIndex + i];
cell.PutValue(colNames[i]);
style = cell.GetStyle();
style.Number = 49;      // 49(text|@) 表示为文本
cell.SetStyle(style);

第二种方法性能还不错,而且操作也不复杂,可以设置导出时文件保存的路径,还可以保存为流输出到浏览器下载。

第三种:Microsoft.Jet.OLEDB

这种方法操作 Excel 类似于操作数据库。下面先介绍一下连接字符串:

// Excel 2003 版本连接字符串
string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:/xxx.xls;Extended Properties='Excel 8.0;HDR=Yes;IMEX=2;'";// Excel 2007 以上版本连接字符串
string strConn = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:/xxx.xlsx;Extended Properties='Excel 12.0;HDR=Yes;IMEX=2;'";

Provider:驱动程序名称

Data Source:指定 Excel 文件的路径

Extended Properties:Excel 8.0 针对 Excel 2000 及以上版本;Excel 12.0 针对 Excel 2007 及以上版本。

HDR:Yes 表示第一行包含列名,在计算行数时就不包含第一行。NO 则完全相反。

IMEX:0 写入模式;1 读取模式;2 读写模式。如果报错为“不能修改表 sheet1 的设计。它在只读数据库中”,那就去掉这个,问题解决。

 View Code

public void ExportExcel(DataTable dt){OleDbConnection conn = null;OleDbCommand cmd = null;Microsoft.Office.Interop.Excel.Application excel = new Microsoft.Office.Interop.Excel.Application();Microsoft.Office.Interop.Excel.Workbooks workbooks = excel.Workbooks;Microsoft.Office.Interop.Excel.Workbook workbook = workbooks.Add(true);try{//设置区域为当前线程的区域dt.Locale = System.Threading.Thread.CurrentThread.CurrentCulture;//设置导出文件路径string path = HttpContext.Current.Server.MapPath("Export/");//设置新建文件路径及名称string savePath = path + DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss") + ".xlsx";//创建文件FileStream file = new FileStream(savePath, FileMode.CreateNew);//关闭释放流,不然没办法写入数据file.Close();file.Dispose();//由于使用流创建的 excel 文件不能被正常识别,所以只能使用这种方式另存为一下。workbook.SaveCopyAs(savePath);// Excel 2003 版本连接字符串//string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source='" + savePath + "';Extended Properties='Excel 8.0;HDR=Yes;'";// Excel 2007 以上版本连接字符串string strConn = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source='"+ savePath + "';Extended Properties='Excel 12.0;HDR=Yes;'";//创建连接对象conn = new OleDbConnection(strConn);//打开连接conn.Open();//创建命令对象cmd = conn.CreateCommand();//获取 excel 所有的数据表。//new object[] { null, null, null, "Table" }指定返回的架构信息:参数介绍//第一个参数指定目录//第二个参数指定所有者//第三个参数指定表名//第四个参数指定表类型DataTable dtSheetName = conn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, new object[] { null, null, null, "Table" });//因为后面创建的表都会在最后面,所以本想删除掉前面的表,结果发现做不到,只能清空数据。for (int i = 0; i < dtSheetName.Rows.Count; i++){cmd.CommandText = "drop table [" + dtSheetName.Rows[i]["TABLE_NAME"].ToString() + "]";cmd.ExecuteNonQuery();}//添加一个表,即 Excel 中 sheet 表cmd.CommandText = "create table " + dt.TableName + " ([S_Id] INT,[S_StuNo] VarChar,[S_Name] VarChar,[S_Sex] VarChar,[S_Height] VarChar,[S_BirthDate] VarChar,[C_S_Id] INT)";cmd.ExecuteNonQuery();for (int i = 0; i < dt.Rows.Count; i++){string values = "";for (int j = 0; j < dt.Columns.Count; j++){values += "'" + dt.Rows[i][j].ToString() + "',";}//判断最后一个字符是否为逗号,如果是就截取掉if (values.LastIndexOf(',') == values.Length - 1){values = values.Substring(0, values.Length - 1);}//写入数据cmd.CommandText = "insert into " + dt.TableName + " (S_Id,S_StuNo,S_Name,S_Sex,S_Height,S_BirthDate,C_S_Id) values (" + values + ")";cmd.ExecuteNonQuery();}conn.Close();conn.Dispose();cmd.Dispose();//加入下面的方法,把保存的 Excel 文件输出到浏览器下载。需要先关闭连接。FileInfo fileInfo = new FileInfo(savePath);OutputClient(fileInfo);}catch (Exception ex){}finally{workbook.Close(false, Type.Missing, Type.Missing);workbooks.Close();excel.Quit();Marshal.ReleaseComObject(workbook);Marshal.ReleaseComObject(workbooks);Marshal.ReleaseComObject(excel);workbook = null;workbooks = null;excel = null;GC.Collect();}}

 View Code

public void OutputClient(FileInfo file){HttpResponse response = HttpContext.Current.Response;response.Buffer = true;response.Clear();response.ClearHeaders();response.ClearContent();response.ContentType = "application/vnd.ms-excel";//导出到 .xlsx 格式不能用时,可以试试这个//HttpContext.Current.Response.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";response.AddHeader("Content-Disposition", string.Format("attachment; filename={0}.xlsx", DateTime.Now.ToString("yyyy-MM-dd-HH-mm")));response.Charset = "GB2312";response.ContentEncoding = Encoding.GetEncoding("GB2312");response.AddHeader("Content-Length", file.Length.ToString());response.WriteFile(file.FullName);response.Flush();response.Close();}

这种方法需要指定一个已经存在的 Excel 文件作为写入数据的模板,不然的话就得使用流创建一个新的 Excel 文件,但是这样是没法识别的,那就需要用到 Microsoft.Office.Interop.Excel.dll 里面的 Microsoft.Office.Interop.Excel.Workbook.SaveCopyAs() 方法另存为一下,这样性能也就更差了。

使用操作命令创建的表都是在最后面的,前面的也没法删除(我是没有找到方法),当然也可以不再创建,直接写入数据也可以。

第四种:NPOI

NPOI 是 POI 项目的.NET版本,它不使用 Office COM 组件,不需要安装 Microsoft Office,目前支持 Office 2003 和 2007 版本。

NPOI 是免费开源的,操作也比较方便,下载地址:http://npoi.codeplex.com/

 View Code

public void ExportExcel(DataTable dt){try{//创建一个工作簿IWorkbook workbook = new HSSFWorkbook();//创建一个 sheet 表ISheet sheet = workbook.CreateSheet(dt.TableName);//创建一行IRow rowH = sheet.CreateRow(0);//创建一个单元格ICell cell = null;//创建单元格样式ICellStyle cellStyle = workbook.CreateCellStyle();//创建格式IDataFormat dataFormat = workbook.CreateDataFormat();//设置为文本格式,也可以为 text,即 dataFormat.GetFormat("text");cellStyle.DataFormat = dataFormat.GetFormat("@");//设置列名foreach (DataColumn col in dt.Columns){//创建单元格并设置单元格内容rowH.CreateCell(col.Ordinal).SetCellValue(col.Caption);//设置单元格格式rowH.Cells[col.Ordinal].CellStyle = cellStyle;}//写入数据for (int i = 0; i < dt.Rows.Count; i++){//跳过第一行,第一行为列名IRow row = sheet.CreateRow(i + 1);for (int j = 0; j < dt.Columns.Count; j++){cell = row.CreateCell(j);cell.SetCellValue(dt.Rows[i][j].ToString());cell.CellStyle = cellStyle;}}//设置导出文件路径string path = HttpContext.Current.Server.MapPath("Export/");//设置新建文件路径及名称string savePath = path + DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss") + ".xls";//创建文件FileStream file = new FileStream(savePath, FileMode.CreateNew,FileAccess.Write);//创建一个 IO 流MemoryStream ms = new MemoryStream();//写入到流workbook.Write(ms);//转换为字节数组byte[] bytes = ms.ToArray();file.Write(bytes, 0, bytes.Length);file.Flush();//还可以调用下面的方法,把流输出到浏览器下载OutputClient(bytes);//释放资源bytes = null;ms.Close();ms.Dispose();file.Close();file.Dispose();workbook.Close();sheet = null;workbook = null;}catch(Exception ex){}}

 View Code

public void OutputClient(byte[] bytes){HttpResponse response = HttpContext.Current.Response;response.Buffer = true;response.Clear();response.ClearHeaders();response.ClearContent();response.ContentType = "application/vnd.ms-excel";response.AddHeader("Content-Disposition", string.Format("attachment; filename={0}.xls", DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss")));response.Charset = "GB2312";response.ContentEncoding = Encoding.GetEncoding("GB2312");response.BinaryWrite(bytes);response.Flush();response.Close();}
// 2007 版本创建一个工作簿
IWorkbook workbook = new XSSFWorkbook();// 2003 版本创建一个工作簿
IWorkbook workbook = new HSSFWorkbook();

PS:操作 2003 版本需要添加 NPOI.dll 的引用,操作 2007 版本需要添加 NPOI.OOXML.dll 的引用。

第五种:GridView

直接使用 GridView 把 DataTable 的数据转换为字符串流,然后输出到浏览器下载。

 View Code

public void ExportExcel(DataTable dt){HttpResponse response = HttpContext.Current.Response;response.Buffer = true;response.Clear();response.ClearHeaders();response.ClearContent();response.ContentType = "application/vnd.ms-excel";response.AddHeader("content-disposition", string.Format("attachment; filename={0}.xls", DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss")));response.Charset = "GB2312";response.ContentEncoding = Encoding.GetEncoding("GB2312");//实例化一个流StringWriter stringWrite = new StringWriter();//指定文本输出到流HtmlTextWriter htmlWrite = new HtmlTextWriter(stringWrite);GridView gv = new GridView();gv.DataSource = dt;gv.DataBind();for (int i = 0; i < dt.Rows.Count; i++){for (int j = 0; j < dt.Columns.Count; j++){//设置每个单元格的格式gv.Rows[i].Cells[j].Attributes.Add("style", "vnd.ms-excel.numberformat:@");}}//把 GridView 的内容输出到 HtmlTextWritergv.RenderControl(htmlWrite);response.Write(stringWrite.ToString());response.Flush();response.Close();}

这种方式导出 .xlsx 格式的 Excel 文件时,没办法打开。导出 .xls 格式的,会提示文件格式和扩展名不匹配,但是可以打开的。

第六种:DataGrid

其实这一种方法和上面的那一种方法几乎是一样的。

 View Code

public void ExportExcel(DataTable dt){HttpResponse response = HttpContext.Current.Response;response.Buffer = true;response.Clear();response.ClearHeaders();response.ClearContent();response.ContentType = "application/vnd.ms-excel";response.AddHeader("content-disposition", string.Format("attachment; filename={0}.xls", DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss")));response.Charset = "GB2312";response.ContentEncoding = Encoding.GetEncoding("GB2312");//实例化一个流StringWriter stringWrite = new StringWriter();//指定文本输出到流HtmlTextWriter htmlWrite = new HtmlTextWriter(stringWrite);DataGrid dg = new DataGrid();dg.DataSource = dt;dg.DataBind();dg.Attributes.Add("style", "vnd.ms-excel.numberformat:@");//把 DataGrid 的内容输出到 HtmlTextWriterdg.RenderControl(htmlWrite);response.Write(stringWrite.ToString());response.Flush();response.Close();}

第七种:直接使用 IO 流

第一种方式,使用文件流在磁盘创建一个 Excel 文件,然后使用流写入数据。

 View Code

public void ExportExcel(DataTable dt){//设置导出文件路径string path = HttpContext.Current.Server.MapPath("Export/");//设置新建文件路径及名称string savePath = path + DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss") + ".xls";//创建文件FileStream file = new FileStream(savePath, FileMode.CreateNew, FileAccess.Write);//以指定的字符编码向指定的流写入字符StreamWriter sw = new StreamWriter(file, Encoding.GetEncoding("GB2312"));StringBuilder strbu = new StringBuilder();//写入标题for (int i = 0; i < dt.Columns.Count; i++){strbu.Append(dt.Columns[i].ColumnName.ToString() + "\t");}//加入换行字符串strbu.Append(Environment.NewLine);//写入内容for (int i = 0; i < dt.Rows.Count; i++){for (int j = 0; j < dt.Columns.Count; j++){strbu.Append(dt.Rows[i][j].ToString() + "\t");}strbu.Append(Environment.NewLine);}sw.Write(strbu.ToString());sw.Flush();file.Flush();sw.Close();sw.Dispose();file.Close();file.Dispose();}

第二种方式,这种方式就不需要在本地磁盘创建文件了,首先创建一个内存流写入数据,然后输出到浏览器下载。

 View Code

public void ExportExcel(DataTable dt){//创建一个内存流MemoryStream ms = new MemoryStream();//以指定的字符编码向指定的流写入字符StreamWriter sw = new StreamWriter(ms, Encoding.GetEncoding("GB2312"));StringBuilder strbu = new StringBuilder();//写入标题for (int i = 0; i < dt.Columns.Count; i++){strbu.Append(dt.Columns[i].ColumnName.ToString() + "\t");}//加入换行字符串strbu.Append(Environment.NewLine);//写入内容for (int i = 0; i < dt.Rows.Count; i++){for (int j = 0; j < dt.Columns.Count; j++){strbu.Append(dt.Rows[i][j].ToString() + "\t");}strbu.Append(Environment.NewLine);}sw.Write(strbu.ToString());sw.Flush();sw.Close();sw.Dispose();//转换为字节数组byte[] bytes = ms.ToArray();ms.Close();ms.Dispose();OutputClient(bytes);}

 View Code

public void OutputClient(byte[] bytes){HttpResponse response = HttpContext.Current.Response;response.Buffer = true;response.Clear();response.ClearHeaders();response.ClearContent();response.ContentType = "application/vnd.ms-excel";response.AddHeader("Content-Disposition", string.Format("attachment; filename={0}.xls", DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss")));response.Charset = "GB2312";response.ContentEncoding = Encoding.GetEncoding("GB2312");response.BinaryWrite(bytes);response.Flush();response.Close();}

这种方法有一个弊端,就是不能设置单元格的格式(至少我是没有找到,是在下输了)。

第八种:EPPlus

EPPlus 是一个使用 Open Office Xml 格式(xlsx)读取和写入 Excel 2007/2010 文件的 .net 库,并且免费开源。

下载地址:http://epplus.codeplex.com/

第一种方式,先使用文件流在磁盘创建一个 Excel 文件,然后打开这个文件写入数据并保存。

 View Code

public void ExportExcel(DataTable dt){//新建一个 Excel 文件string path = HttpContext.Current.Server.MapPath("Export/");string filePath = path + DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss") + ".xlsx";FileStream fileStream = new FileStream(filePath, FileMode.Create);//加载这个 Excel 文件ExcelPackage package = new ExcelPackage(fileStream);// 添加一个 sheet 表ExcelWorksheet worksheet = package.Workbook.Worksheets.Add(dt.TableName);int rowIndex = 1;   // 起始行为 1int colIndex = 1;   // 起始列为 1//设置列名for (int i = 0; i < dt.Columns.Count; i++){worksheet.Cells[rowIndex, colIndex + i].Value = dt.Columns[i].ColumnName;//自动调整列宽,也可以指定最小宽度和最大宽度worksheet.Column(colIndex + i).AutoFit();}// 跳过第一列列名rowIndex++;//写入数据for (int i = 0; i < dt.Rows.Count; i++){for (int j = 0; j < dt.Columns.Count; j++){worksheet.Cells[rowIndex + i, colIndex + j].Value = dt.Rows[i][j].ToString();}//自动调整行高worksheet.Row(rowIndex + i).CustomHeight = true;}//设置字体,也可以是中文,比如:宋体worksheet.Cells.Style.Font.Name = "Arial";//字体加粗worksheet.Cells.Style.Font.Bold = true;//字体大小worksheet.Cells.Style.Font.Size = 12;//字体颜色worksheet.Cells.Style.Font.Color.SetColor(System.Drawing.Color.Black);//单元格背景样式,要设置背景颜色必须先设置背景样式worksheet.Cells.Style.Fill.PatternType = ExcelFillStyle.Solid;//单元格背景颜色worksheet.Cells.Style.Fill.BackgroundColor.SetColor(System.Drawing.Color.DimGray);//设置单元格所有边框样式和颜色worksheet.Cells.Style.Border.BorderAround(ExcelBorderStyle.Thin, System.Drawing.ColorTranslator.FromHtml("#0097DD"));//单独设置单元格四边框 Top、Bottom、Left、Right 的样式和颜色//worksheet.Cells.Style.Border.Top.Style = ExcelBorderStyle.Thin;//worksheet.Cells.Style.Border.Top.Color.SetColor(System.Drawing.Color.Black);//垂直居中worksheet.Cells.Style.VerticalAlignment = ExcelVerticalAlignment.Center;//水平居中worksheet.Cells.Style.HorizontalAlignment = ExcelHorizontalAlignment.Center;//单元格是否自动换行worksheet.Cells.Style.WrapText = false;//设置单元格格式为文本worksheet.Cells.Style.Numberformat.Format = "@";//单元格自动适应大小worksheet.Cells.Style.ShrinkToFit = true;package.Save();fileStream.Close();fileStream.Dispose();worksheet.Dispose();package.Dispose();}

第二种方式,不指定文件,先创建一个 Excel 工作簿写入数据之后,可以选择保存至指定文件(新建文件)、保存为流、获取字节数组输出到浏览器下载。

 View Code

public void ExportExcel(DataTable dt){//新建一个 Excel 工作簿ExcelPackage package = new ExcelPackage();// 添加一个 sheet 表ExcelWorksheet worksheet = package.Workbook.Worksheets.Add(dt.TableName);int rowIndex = 1;   // 起始行为 1int colIndex = 1;   // 起始列为 1//设置列名for (int i = 0; i < dt.Columns.Count; i++){worksheet.Cells[rowIndex, colIndex + i].Value = dt.Columns[i].ColumnName;//自动调整列宽,也可以指定最小宽度和最大宽度worksheet.Column(colIndex + i).AutoFit();}// 跳过第一列列名rowIndex++;//写入数据for (int i = 0; i < dt.Rows.Count; i++){for (int j = 0; j < dt.Columns.Count; j++){worksheet.Cells[rowIndex + i, colIndex + j].Value = dt.Rows[i][j].ToString();}//自动调整行高worksheet.Row(rowIndex + i).CustomHeight = true;}//设置字体,也可以是中文,比如:宋体worksheet.Cells.Style.Font.Name = "Arial";//字体加粗worksheet.Cells.Style.Font.Bold = true;//字体大小worksheet.Cells.Style.Font.Size = 12;//字体颜色worksheet.Cells.Style.Font.Color.SetColor(System.Drawing.Color.Black);//单元格背景样式,要设置背景颜色必须先设置背景样式worksheet.Cells.Style.Fill.PatternType = ExcelFillStyle.Solid;//单元格背景颜色worksheet.Cells.Style.Fill.BackgroundColor.SetColor(System.Drawing.Color.DimGray);//设置单元格所有边框样式和颜色worksheet.Cells.Style.Border.BorderAround(ExcelBorderStyle.Thin, System.Drawing.ColorTranslator.FromHtml("#0097DD"));//单独设置单元格四边框 Top、Bottom、Left、Right 的样式和颜色//worksheet.Cells.Style.Border.Top.Style = ExcelBorderStyle.Thin;//worksheet.Cells.Style.Border.Top.Color.SetColor(System.Drawing.Color.Black);//垂直居中worksheet.Cells.Style.VerticalAlignment = ExcelVerticalAlignment.Center;//水平居中worksheet.Cells.Style.HorizontalAlignment = ExcelHorizontalAlignment.Center;//单元格是否自动换行worksheet.Cells.Style.WrapText = false;//设置单元格格式为文本worksheet.Cells.Style.Numberformat.Format = "@";//单元格自动适应大小worksheet.Cells.Style.ShrinkToFit = true;第一种保存方式//string path1 = HttpContext.Current.Server.MapPath("Export/");//string filePath1 = path1 + DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss") + ".xlsx";//FileStream fileStream1 = new FileStream(filePath1, FileMode.Create);保存至指定文件//FileInfo fileInfo = new FileInfo(filePath1);//package.SaveAs(fileInfo);第二种保存方式//string path2 = HttpContext.Current.Server.MapPath("Export/");//string filePath2 = path2 + DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss") + ".xlsx";//FileStream fileStream2 = new FileStream(filePath2, FileMode.Create);写入文件流//package.SaveAs(fileStream2);//创建一个内存流,然后转换为字节数组,输出到浏览器下载//MemoryStream ms = new MemoryStream();//package.SaveAs(ms);//byte[] bytes = ms.ToArray();//也可以直接获取流//Stream stream = package.Stream;//也可以直接获取字节数组byte[] bytes = package.GetAsByteArray();//调用下面的方法输出到浏览器下载OutputClient(bytes);worksheet.Dispose();package.Dispose();}

 View Code

public void OutputClient(byte[] bytes){HttpResponse response = HttpContext.Current.Response;response.Buffer = true;response.Clear();response.ClearHeaders();response.ClearContent();//response.ContentType = "application/ms-excel";response.ContentType = "application/vnd.openxmlformats - officedocument.spreadsheetml.sheet";response.AppendHeader("Content-Type", "text/html; charset=GB2312");response.AddHeader("Content-Disposition", string.Format("attachment; filename={0}.xlsx", DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss")));response.Charset = "GB2312";response.ContentEncoding = Encoding.GetEncoding("GB2312");response.BinaryWrite(bytes);response.Flush();response.End();}

这种方法创建文件和输出到浏览器下载都是可以支持 Excel .xlsx 格式的。更多相关属性设置,请参考:

http://www.cnblogs.com/rumeng/p/3785775.html

转:https://www.cnblogs.com/Brambling/p/6854731.html

C# 导出 Excel 的各种方法总结相关推荐

  1. java excil表格开发_JAVA导出Excel电子表格的方法

    JAVA导出Excel电子表格的方法 package com.qingruxu.excel; import java.io.File; import java.io.IOException; impo ...

  2. sql2005导出Excel错误解决方法

    今天有个任务要导出数据库表到Excel文件,试了下直接导出数据,但是一直报错,然后从网上找了个sql语句: EXEC master..xp_cmdshell 'bcp 数据库.dbo.表 out d: ...

  3. ext.net 2.5 导出excel的使用方法

    前台页面的导入,导出 <ext:FileUploadField ID="FileUploadField_Import" runat="server" Bu ...

  4. 后台管理系统导出Excel表格的方法

    //导出Excel公共方法function excelExport(colums,queryParams,objectName,baseUrl,sysUrl,body,title){if(colums ...

  5. php导出excel格式文件,PHP导入与导出Excel文件的方法

    一.PHP导出Excel文件 1,推荐phpexcel,官方网站: http://www.codeplex.com/PHPExcel 导入导出都成,可以导出office2007格式,同时兼容2003 ...

  6. React,导出Excel表格的方法

    前端点击按钮导出Excel表,以下方法,前提是让后端返回的文件流可以直接请求下载. 意思就是:你通过在浏览器请求接口,传参就可以直接下载文件. 方法一: window.open('请求地址') 适用于 ...

  7. layui 导出 Excel表格的方法

    一.利用layui自带的excel导出功能 // 原始容器 <table id="demo" lay-filter="test"></tabl ...

  8. php导出excel方法,PHP导出EXCEL简单实用方法

    /** * 得到相应的列表字符串 * * @param $titArr 字段和标题的对应数组 * @param $data 数据的列表数组 * @param $fileName 文件的名字 * @pa ...

  9. C#中导出Excel报表的方法

    在上篇博文中提到了C#执行Excel宏模版的方法,这篇我们来介绍下怎么样将模版导出,并生成报表. winform中简单的示例代码如下: public ExportTextReport() { stri ...

最新文章

  1. C++负数、小数如何保存
  2. Oracle NoLogging Append 方式减少批量insert的redo_size
  3. 软件定义存储的定制化怎么走?
  4. mysql insert replace_mysql 操作总结 INSERT和REPLACE
  5. 一篇文章带你读懂 MySQL 和 InnoDB
  6. delphi Hi 和 High
  7. Docker开启和关闭容器自启动
  8. pdf形式是什么意思
  9. Electron实现桌面日历
  10. Chrome浏览器安装Axure插件教程
  11. oracle餐馆系统分析,现代饭店管理-试卷A
  12. bmob php支付,Bmob支付
  13. 写的不错的家庭关系的文章,转自天涯。《2》
  14. 2022年中小企业上云首选,华为云省钱攻略
  15. 在ROS中创建并优化机器人URDF模型
  16. 响应式编程在Android中的应用
  17. KV260编译SmartCam应用
  18. @Resource与@Autowired注解的区别
  19. 用kotlin方式打开《第一行代码:Android》之开发酷欧天气(1)
  20. 云计算术语(中英文对照)

热门文章

  1. ROS探索篇(三)基于turtlebot3实现SLAM建图及自主导航仿真
  2. 微信小程序开发的作用_分享微信小程序开发可以实现什么
  3. OrangePi R1 Plus LTS风扇PWM风扇转动发出难以接受噪声解决办法
  4. 【从零开始学习SLAM】Ubuntu 20.04系统下编译运行视觉SLAM十四讲代码
  5. Linux 的各种 signal
  6. OpenCvSharp 图像缩放
  7. 软件测试风险管理需要做的3件事
  8. PLDA宣布在其XpressLINK™系列CXL控制器IP中支持CXL™ 2.0
  9. ECALL Swtichless调用及tRTS端Swtichless初始化
  10. 基于AI的图像视觉处理技术