Este tutorial rápido lo guiará sobre cómo convertir DataTable a Excel en C#. Primero, crearemos un DataTable y luego lo importaremos a la hoja de trabajo del objeto de libro de trabajo recién creado usando la función ImportData de la clase WorkSheet.Cells. Después de escribir los datos de DataTable en Excel en C#, los guardaremos como un archivo XLSX en el disco.
Pasos para convertir DataTable a Excel en C#
- Usando el administrador de paquetes NuGet, agregue Aspose.Cells for .NET para importar DataTable a Excel
- Cree una instancia de un Workbook vacío para exportarle DataTable
- Cree e inicialice un DataTable para escribir en un archivo de Excel
- Declare un objeto de la clase ImportTableOptions para establecer parámetros al importar datos de DataTable
- Obtenga una referencia a la primera hoja de trabajo en el libro de trabajo recién creado
- Llame a la función Cells.ImportData en la clase WorkSheet para importar DataTable
- Guarde el libro de trabajo resultante con datos de DataTable
Estos pasos describen el proceso para exportar datos de DataTable a Excel en C# paso a paso, de modo que primero se crea el libro de trabajo vacío y luego se inicializa un DataTable y se llena con algunos datos ficticios. Se crea un objeto de la clase ImportTableOptions que contiene muchos parámetros que se pueden configurar; sin embargo, aquí se usan las opciones predeterminadas. Al final, el DataTable se importa a la primera hoja de trabajo del Libro de trabajo en una celda de inicio especificada.
Código para exportar datos de DataTable a Excel en C#
using System; | |
using System.Data; | |
using Aspose.Cells; | |
namespace ConvertDataTableToExcelInCSharp | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
// Use Aspose.Cells license to remove trial version watermark from the Excel file after exporting DataTable | |
License licenseForCells = new License(); | |
licenseForCells.SetLicense("Aspose.Cells.lic"); | |
// Create an object of a workbook to export DataTable | |
Workbook workbookForDataTable = new Workbook(); | |
// Create a sample DataTable for the student | |
DataTable studentTable = new DataTable("Student"); | |
// Add multiple columns in the newly created DataTable | |
studentTable.Columns.Add("Roll No", typeof(long)); | |
studentTable.Columns.Add("Age", typeof(short)); | |
studentTable.Columns.Add("Name", typeof(string)); | |
// Create a new row for adding to the data table | |
DataRow studentRecord = studentTable.NewRow(); | |
// Set the fields data in the row | |
studentRecord["Roll No"] = 1002; | |
studentRecord["Age"] = 19; | |
studentRecord["Name"] = "Alfred Keam"; | |
// Add this newly created record into the student table | |
studentTable.Rows.Add(studentRecord); | |
// Create another row for the student table | |
studentRecord = studentTable.NewRow(); | |
// Set data in the newly created row | |
studentRecord["Roll No"] = 1003; | |
studentRecord["Age"] = 20; | |
studentRecord["Name"] = "Bernadette Thares"; | |
// Add this record to the student table | |
studentTable.Rows.Add(studentRecord); | |
// Instantiate an object of ImportTableOptions for controlling the import of DataTable into Excel | |
ImportTableOptions importOptions = new ImportTableOptions(); | |
// Get reference to the first worksheet in the workbook | |
Worksheet dataTableWorksheet = workbookForDataTable.Worksheets[0]; | |
// Call the ImportData function to import DataTable starting from cell A1 described by row 0 and column 0 | |
dataTableWorksheet.Cells.ImportData(studentTable, 0, 0, importOptions); | |
// Set the columns width so that entire data is visible within the cell | |
dataTableWorksheet.AutoFitColumns(); | |
// Save the output workbook on the disc | |
workbookForDataTable.Save("DataTableImported.xlsx"); | |
} | |
} | |
} |
En este código, ImportTableOptions se usa con la configuración predeterminada, sin embargo, puede establecer una variedad de parámetros como una lista de 0 números de columna basados en índice cuyos datos se importarán de DataTable, establecer el formato de fecha, establecer el total de filas y columnas para ser importados, y muchos más. También puede decidir si los títulos de las columnas se importarán o no.
Este breve tutorial ha explicado cómo en C# crear un archivo de Excel a partir de DataTable. Si desea aprender el proceso inverso, como Convertir Excel en DataTable, consulte el artículo sobre cómo convertir Excel a DataTable en C#.