Šioje trumpoje pamokoje sužinosite, kaip konvertuoti DataTable į Excel naudojant C#. Pirmiausia sukursime DataTable ir importuosime ją į naujai sukurto darbaknygės objekto darbalapį naudodami WorkSheet.Cells klasės funkciją ImportData. Įrašę DataTable duomenis į Excel C#, išsaugosime juos kaip XLSX failą diske.
Veiksmai, kaip konvertuoti duomenų lentelę į Excel C#
- Naudodami NuGet paketų tvarkyklę pridėkite Aspose.Cells for .NET, kad importuotumėte duomenų lentelę į Excel.
- Sukurkite tuščios Workbook egzempliorių, kad į jį būtų galima eksportuoti duomenų lentelę
- Sukurkite ir inicijuokite duomenų lentelę, kad galėtumėte rašyti į Excel failą
- Paskelbkite ImportTableOptions klasės objektą parametrams nustatyti importuojant duomenis iš DataTable
- Gaukite nuorodą į pirmąjį darbalapį naujai sukurtoje darbaknygėje
- Norėdami importuoti duomenų lentelę, iškvieskite funkciją Cells.ImportData klasėje WorkSheet
- Išsaugokite gautą darbaknygę su duomenimis iš duomenų lentelės
Šie veiksmai aprašo nuoseklų duomenų eksportavimo iš DataTable į Excel C# procesą taip, kad pirmiausia būtų sukurta tuščia darbaknygė, o tada inicijuojama duomenų lentelė ir užpildoma tam tikrais netikrais duomenimis. Sukuriamas ImportTableOptions klasės objektas, kuriame yra daug parametrų, kuriuos galima nustatyti, tačiau čia naudojamos numatytosios parinktys. Galų gale duomenų lentelė importuojama į pirmąjį darbaknygės darbalapį nurodytoje pradžios langelyje.
Kodas duomenų lentelės duomenims eksportuoti į Excel 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"); | |
} | |
} | |
} |
Šiame kode “ImportTableOptions” naudojamos su numatytaisiais nustatymais, tačiau galite nustatyti įvairius parametrus, pvz., 0 indeksu pagrįstų stulpelių numerių sąrašą, kurių duomenys turi būti importuojami iš DataTable, nustatyti datos formatą, nustatyti bendrą eilučių ir stulpelių skaičių. importuotų ir daug kitų. Taip pat galite nuspręsti, ar stulpelių pavadinimus reikia importuoti, ar ne.
Šioje trumpoje pamokoje paaiškinta, kaip C# sukurti Excel failą iš DataTable. Jei norite sužinoti apie atvirkštinį procesą, pvz., Excel konvertavimą į duomenų lentelę, žr. straipsnį kaip konvertuoti Excel į DataTable C#.