บทช่วยสอนฉบับย่อนี้จะแนะนำคุณเกี่ยวกับวิธี แปลง DataTable เป็น Excel ใน C# ขั้นแรก เราจะสร้าง DataTable แล้วนำเข้าไปยังแผ่นงานของวัตถุสมุดงานที่สร้างขึ้นใหม่โดยใช้ฟังก์ชัน ImportData ของคลาส WorkSheet.Cells หลังจาก เขียนข้อมูล DataTable ไปยัง Excel ใน C# แล้ว เราจะบันทึกเป็นไฟล์ XLSX ในแผ่นดิสก์
ขั้นตอนในการแปลง DataTable เป็น Excel ใน C#
- ใช้ NuGet package manager เพิ่ม Aspose.Cells for .NET เพื่อนำเข้า DataTable ไปยัง Excel
- สร้างอินสแตนซ์ของ Workbook ที่ว่างเปล่าเพื่อส่งออก DataTable ไปยังอินสแตนซ์
- สร้างและเริ่มต้น DataTable เพื่อเขียนไปยังไฟล์ Excel
- ประกาศวัตถุของคลาส ImportTableOptions สำหรับการตั้งค่าพารามิเตอร์ในขณะที่นำเข้าข้อมูลจาก DataTable
- รับการอ้างอิงไปยังแผ่นงานแรกในสมุดงานที่สร้างขึ้นใหม่
- เรียกใช้ฟังก์ชัน Cells.ImportData ในคลาส WorkSheet เพื่อนำเข้า DataTable
- บันทึกสมุดงานผลลัพธ์ที่มีข้อมูลจาก DataTable
ขั้นตอนเหล่านี้อธิบายกระบวนการ ส่งออกข้อมูลจาก DataTable ไปยัง Excel ใน C# ในลักษณะทีละขั้นตอน เช่น สร้างเวิร์กบุ๊กเปล่าก่อน จากนั้น DataTable จะเริ่มต้นและเติมข้อมูลจำลอง ออบเจกต์ของคลาส ImportTableOptions ถูกสร้างขึ้นซึ่งมีพารามิเตอร์จำนวนมากที่สามารถตั้งค่าได้ อย่างไรก็ตาม ที่นี่จะใช้ตัวเลือกเริ่มต้น ในตอนท้าย DataTable จะถูกนำเข้าไปยังแผ่นงานแรกของสมุดงานที่เซลล์เริ่มต้นที่ระบุ
รหัสเพื่อส่งออกข้อมูล DataTable ไปยัง 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"); | |
} | |
} | |
} |
ในโค้ดนี้ ImportTableOptions ใช้กับการตั้งค่าเริ่มต้น อย่างไรก็ตาม คุณสามารถตั้งค่าพารามิเตอร์ต่างๆ เช่น รายการของหมายเลขคอลัมน์ตามดัชนี 0 ซึ่งข้อมูลจะถูกนำเข้าจาก DataTable กำหนดรูปแบบวันที่ ตั้งค่าแถวและคอลัมน์ทั้งหมดให้เป็น นำเข้าและอื่น ๆ อีกมากมาย คุณยังสามารถตัดสินใจว่าจะนำเข้าชื่อคอลัมน์หรือไม่
บทช่วยสอนสั้น ๆ นี้ได้อธิบายวิธีการใน C# สร้างไฟล์ Excel จาก DataTable หากคุณต้องการเรียนรู้กระบวนการย้อนกลับ เช่น แปลง Excel เป็น DataTable โปรดดูบทความใน วิธีแปลง Excel เป็น DataTable ใน C#