Este tutorial rápido irá guiá-lo sobre como converter DataTable para Excel em C#. Primeiro, vamos criar uma DataTable e depois importá-la para a planilha do objeto de pasta de trabalho recém-criado usando a função ImportData da classe WorkSheet.Cells. Depois de gravar os dados do DataTable no Excel em C#, vamos salvá-los como um arquivo XLSX no disco.
Etapas para converter DataTable para Excel em C#
- Usando o gerenciador de pacotes NuGet, adicione Aspose.Cells for .NET para importar DataTable para o Excel
- Crie uma instância de um Workbook vazio para exportar DataTable para ele
- Criar e inicializar um DataTable para gravar no arquivo do Excel
- Declare um objeto da classe ImportTableOptions para definir parâmetros ao importar dados de DataTable
- Obter uma referência à primeira planilha na pasta de trabalho recém-criada
- Chame a função Cells.ImportData na classe WorkSheet para importar DataTable
- Salve a pasta de trabalho resultante com dados da DataTable
Essas etapas descrevem o processo para exportar dados de DataTable para Excel em C# de maneira passo a passo, de modo que primeiro a pasta de trabalho vazia seja criada e, em seguida, uma DataTable seja inicializada e preenchida com alguns dados fictícios. É criado um objeto da classe ImportTableOptions que contém muitos parâmetros que podem ser definidos, porém aqui são usadas as opções padrão. No final, o DataTable é importado para a primeira planilha da pasta de trabalho em uma célula inicial especificada.
Código para exportar dados da DataTable para o Excel em 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"); | |
} | |
} | |
} |
Neste código, ImportTableOptions é usado com configurações padrão, no entanto, você pode definir uma variedade de parâmetros, como uma lista de 0 números de coluna baseados em índice cujos dados devem ser importados do DataTable, definir o formato da data, definir o total de linhas e colunas a serem importados e muito mais. Você também pode decidir se os títulos das colunas devem ser importados ou não.
Este breve tutorial explicou como em C# criar arquivo Excel a partir de DataTable. Se você quiser aprender o processo inverso, como Converter Excel em DataTable, consulte o artigo em como converter Excel para DataTable em C#.