Questo breve tutorial ti guiderà su come convertire DataTable in Excel in C#. Per prima cosa creeremo una DataTable e quindi la importeremo nel foglio di lavoro dell’oggetto cartella di lavoro appena creato utilizzando la funzione ImportData della classe WorkSheet.Cells. Dopo aver scritto i dati DataTable su Excel in C#, li salveremo come file XLSX sul disco.
Passaggi per convertire DataTable in Excel in C#
- Utilizzando il gestore di pacchetti NuGet, aggiungi Aspose.Cells for .NET per importare DataTable in Excel
- Crea un’istanza di un Workbook vuoto per esportare DataTable in esso
- Creare e inizializzare un DataTable per la scrittura su file Excel
- Dichiara un oggetto della classe ImportTableOptions per l’impostazione dei parametri durante l’importazione dei dati da DataTable
- Ottieni un riferimento al primo foglio di lavoro nella cartella di lavoro appena creata
- Chiama la funzione Cells.ImportData nella classe WorkSheet per importare DataTable
- Salva la cartella di lavoro risultante con i dati da DataTable
Questi passaggi descrivono il processo per esportare i dati da DataTable a Excel in C# in modo dettagliato in modo tale che prima venga creata la cartella di lavoro vuota e quindi venga inizializzata una DataTable e riempita con alcuni dati fittizi. Viene creato un oggetto della classe ImportTableOptions che contiene molti parametri che possono essere impostati, tuttavia qui vengono utilizzate le opzioni predefinite. Alla fine, il DataTable viene importato nel primo foglio di lavoro della cartella di lavoro in una cella iniziale specificata.
Codice per esportare i dati DataTable in Excel in 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"); | |
} | |
} | |
} |
In questo codice, ImportTableOptions viene utilizzato con le impostazioni predefinite, tuttavia è possibile impostare una varietà di parametri come un elenco di 0 numeri di colonna basati su indice i cui dati devono essere importati da DataTable, impostare il formato della data, impostare righe e colonne totali da importato e molti altri. Puoi anche decidere se importare o meno i titoli delle colonne.
Questo breve tutorial ha spiegato come in C# creare file Excel da DataTable. Se vuoi imparare il processo inverso come Converti Excel in DataTable, fai riferimento all’articolo su come convertire Excel in DataTable in C#.