Dokumen menunjukkan cara menghasilkan file Excel di C#. Langkah-langkah berikut dan cuplikan kode menunjukkan cara membuat file Excel di C# tanpa menggunakan interop MS Office.
Langkah-langkah untuk Menghasilkan File Excel di C#
- Unduh atau instal paket Aspose.Cells for .NET dari NuGet.org
- Impor namespace Aspose.Cells ke proyek VS.NET
- Tentukan objek Lisensi dan atur menggunakan metode SetLicense
- Buat Workbook kosong
- Masukkan data laporan ke dalam sel Worksheet pertama
- Simpan file Excel XLSX dengan data
Selama bertahun-tahun, format file MS Excel diketahui digunakan untuk analisis data dan pelaporan data. Langkah-langkah di atas menjelaskan prosedur untuk menulis ke file Excel menggunakan C#. Kami menulis kode C# untuk membuat file Excel baru dari awal. File Excel akan berisi contoh laporan pelanggan; Anda dapat membuat laporan yang Anda inginkan dengan mengisi sel yang relevan dengan data di lembar kerja.
Contoh Kode untuk Menghasilkan File Excel di 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"); | |
} | |
} | |
} |
Pada contoh di atas, Anda akan belajar tentang cara membuat file Excel secara dinamis di C#. Menggunakan C#.NET, Anda dapat dengan mudah membuat file Excel. Dalam cuplikan kode, kami memasukkan data ke dalam beberapa sel lembar kerja pertama di buku kerja untuk membuat laporan sederhana. Pada akhirnya, kami menyimpan file Excel XLSX ke disk. Selain itu, Anda mungkin menyukai cara mengekspor file Excel besar ke CSV di C#.