วิธีสร้างไฟล์ Excel ใน C#

เอกสารแสดงวิธีการสร้างไฟล์ Excel ใน C# ขั้นตอนและข้อมูลโค้ดต่อไปนี้สาธิตวิธีการสร้างไฟล์ Excel ใน C# โดยไม่ต้องใช้ MS Office interop

ขั้นตอนในการสร้างไฟล์ Excel ใน C#

  1. ดาวน์โหลดหรือติดตั้งแพ็คเกจ Aspose.Cells for .NET จาก NuGet.org
  2. นำเข้าเนมสเปซ Aspose.Cells ไปยังโปรเจ็กต์ VS.NET
  3. กำหนดวัตถุใบอนุญาตและตั้งค่าโดยใช้เมธอด SetLicense
  4. สร้าง Workbook ที่ว่างเปล่า
  5. ป้อนข้อมูลรายงานลงในเซลล์ของ Worksheet แรก
  6. บันทึกไฟล์ Excel XLSX พร้อมข้อมูล

ในช่วงหลายปีที่ผ่านมา เป็นที่ทราบกันดีว่ารูปแบบไฟล์ MS Excel ถูกนำมาใช้สำหรับการวิเคราะห์ข้อมูลและการรายงานข้อมูล ขั้นตอนข้างต้นอธิบายขั้นตอนในการเขียนไฟล์ Excel โดยใช้ C# เราเขียนโค้ด C# เพื่อสร้างไฟล์ Excel ใหม่ตั้งแต่ต้น ไฟล์ Excel จะมีตัวอย่างรายงานลูกค้า คุณสามารถสร้างรายงานที่คุณต้องการได้โดยการกรอกข้อมูลลงในเซลล์ที่เกี่ยวข้องในแผ่นงาน

โค้ดตัวอย่างเพื่อสร้างไฟล์ Excel ใน C#

//Add reference to the namespace of Aspose.Cells for .NET
using Aspose.Cells;
namespace GenerateExcelFile
{
class Program
{
static void Main(string[] args)
{
//At the start, set the license before using other APIs
Aspose.Cells.License Aspose_Cells_license = new Aspose.Cells.License();
Aspose_Cells_license.SetLicense("Aspose.Cells.lic");
//Create an Excel workbook from the scratch
Workbook ExcelFileWorkbook = new Workbook();
//Get the first worksheet (0 indexed position) in the workbook, the default worksheet
Worksheet ExcelFileSheet = ExcelFileWorkbook.Worksheets[0];
//Get the cells collection in the default worksheet
Cells SheetCells = ExcelFileSheet.Cells;
//Insert data into the cells of the sheet
SheetCells["A1"].PutValue("Customers Report");
SheetCells["A2"].PutValue("C_ID");
SheetCells["B2"].PutValue("C_Name");
SheetCells["A3"].PutValue("C001");
SheetCells["B3"].PutValue("Customer1");
SheetCells["A4"].PutValue("C002");
SheetCells["B4"].PutValue("Customer2");
SheetCells["A5"].PutValue("C003");
SheetCells["B5"].PutValue("Customer3");
SheetCells["A6"].PutValue("C004");
SheetCells["B6"].PutValue("Customer4");
//Save to Excel file (XLSX)
ExcelFileWorkbook.Save("ExcelFile.xlsx");
}
}
}

จากตัวอย่างข้างต้น คุณจะได้เรียนรู้วิธีการสร้างไฟล์ Excel แบบไดนามิกใน C# เมื่อใช้ C#.NET คุณสามารถสร้างไฟล์ Excel ได้อย่างง่ายดาย ในข้อมูลโค้ด เราแทรกข้อมูลลงในเซลล์สองสามเซลล์ของแผ่นงานแรกในสมุดงานเพื่อสร้างรายงานอย่างง่าย ในตอนท้าย เราบันทึกไฟล์ Excel XLSX ลงในดิสก์ นอกจากนี้ คุณอาจชอบ วิธีส่งออกไฟล์ Excel ขนาดใหญ่เป็น CSV ใน C#

 ไทย