我有 DataTable 对象。如何将其导出到 XLS 文件中?我试图通过 DataGrid 渲染它
DataGrid dgGrid = new DataGrid();
dgGrid.DataSource = dt;
dgGrid.DataBind();
dgGrid.RenderControl(hw);
但文件非常大并且OutOfMemoryException
出现。
我可以使用http://epplus.codeplex.com/。我需要 C# 函数。
我有 DataTable 对象。如何将其导出到 XLS 文件中?我试图通过 DataGrid 渲染它
DataGrid dgGrid = new DataGrid();
dgGrid.DataSource = dt;
dgGrid.DataBind();
dgGrid.RenderControl(hw);
但文件非常大并且OutOfMemoryException
出现。
我可以使用http://epplus.codeplex.com/。我需要 C# 函数。
有许多选项,其中之一是Access OLE DB Provider,它也根据 DataTables 运行。
如果您想对文档提供更细粒度的支持,我建议您使用Open XML SDK 2.0,其中只有 .xmlx。
对于原始数据,我认为 Access OLE DB(也称为 ACE 提供程序)是最佳选择,因为它可以实现类似数据库的体验。Open XML 假定您具备相当好的 XML 知识并且愿意进行更多尝试。另一方面,您可以应用格式、添加公式和其他高级功能。
好的,在这里找到解决方案:http: //bytesofcode.hubpages.com/hub/Export-DataSet-and-DataTable-to-Excel-2007-in-C
只需下载 epplus 库并调用方法:
private void GenerateExcel(DataTable dataToExcel, string excelSheetName)
{
string fileName = "ByteOfCode";
string currentDirectorypath = Environment.CurrentDirectory;
string finalFileNameWithPath = string.Empty;
fileName = string.Format("{0}_{1}", fileName, DateTime.Now.ToString("dd-MM-yyyy"));
finalFileNameWithPath = string.Format("{0}\\{1}.xlsx", currentDirectorypath, fileName);
//Delete existing file with same file name.
if (File.Exists(finalFileNameWithPath))
File.Delete(finalFileNameWithPath);
var newFile = new FileInfo(finalFileNameWithPath);
//Step 1 : Create object of ExcelPackage class and pass file path to constructor.
using (var package = new ExcelPackage(newFile))
{
//Step 2 : Add a new worksheet to ExcelPackage object and give a suitable name
ExcelWorksheet worksheet = package.Workbook.Worksheets.Add(excelSheetName);
//Step 3 : Start loading datatable form A1 cell of worksheet.
worksheet.Cells["A1"].LoadFromDataTable(dataToExcel, true, TableStyles.None);
//Step 4 : (Optional) Set the file properties like title, author and subject
package.Workbook.Properties.Title = @"This code is part of tutorials available at http://bytesofcode.hubpages.com";
package.Workbook.Properties.Author = "Bytes Of Code";
package.Workbook.Properties.Subject = @"Register here for more http://hubpages.com/_bytes/user/new/";
//Step 5 : Save all changes to ExcelPackage object which will create Excel 2007 file.
package.Save();
MessageBox.Show(string.Format("File name '{0}' generated successfully.", fileName)
, "File generated successfully!", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
首先,谷歌是你最好的朋友。你也可以在这个网站上搜索。
一些解决方案: