في هذا البرنامج التعليمي ، سوف نتعلم كيفية ** إنشاء ملف Excel باستخدام C ++ **. يمكنك إنشاء ملف XLSX أو XLS باستخدام C ++ على MS Windows أو Linux برمجيًا في C ++.
خطوات إنشاء ملف Excel باستخدام C ++
- تكوين الحزمة Aspose.Cells.Cpp باستخدام أداة NuGet package manager
- أضف المرجع إلى مساحة الاسم Aspose::Cells
- قم بتهيئة كائن فئة Workbook لإنشاء مثيل مصنف Excel فارغ
- أدخل القيم النموذجية في خلايا ملف Excel
- احفظ ملف Excel الناتج بعد إدخال البيانات باستخدام C ++
في المثال التالي ، سوف تستكشف كيفية إنشاء ملف Excel باستخدام C ++ *. قم بتهيئة مصنف فارغ وأدخل قيم عينة في الخلايا ببساطة باتباع خطوات قليلة.
التعليمات البرمجية لإنشاء ملف Excel في C ++
#pragma once | |
#include "Aspose.Cells.h" | |
class ExcelWorkbook | |
{ | |
void CreateExcelWorkbook() | |
{ | |
// Set the license for Aspose.Cells API for creating workbook | |
intrusive_ptr<License> CellCreateLicense = new License(); | |
CellCreateLicense->SetLicense(new String("Aspose.Total.lic")); | |
// Instantiate the Workbook object to create an empty XLSX file | |
intrusive_ptr<IWorkbook> CreateWorkbook = Factory::CreateIWorkbook(); | |
//Accessing a worksheet using its index for inserting data | |
intrusive_ptr<IWorksheet> CreateWorksheet = CreateWorkbook->GetIWorksheets()->GetObjectByIndex(0); | |
// Adding sample data and values to cells for filtering | |
CreateWorksheet->GetICells()->GetObjectByIndex(new String("A1"))->PutValue("Customers Report"); | |
CreateWorksheet->GetICells()->GetObjectByIndex(new String("A2"))->PutValue("C_ID"); | |
CreateWorksheet->GetICells()->GetObjectByIndex(new String("B2"))->PutValue("C_Name"); | |
CreateWorksheet->GetICells()->GetObjectByIndex(new String("A3"))->PutValue("C001"); | |
CreateWorksheet->GetICells()->GetObjectByIndex(new String("B3"))->PutValue("Customer1"); | |
CreateWorksheet->GetICells()->GetObjectByIndex(new String("A4"))->PutValue("C002"); | |
CreateWorksheet->GetICells()->GetObjectByIndex(new String("B4"))->PutValue("Customer2"); | |
CreateWorksheet->GetICells()->GetObjectByIndex(new String("A5"))->PutValue("C003"); | |
CreateWorksheet->GetICells()->GetObjectByIndex(new String("B5"))->PutValue("Customer3"); | |
CreateWorksheet->GetICells()->GetObjectByIndex(new String("A6"))->PutValue("C004"); | |
CreateWorksheet->GetICells()->GetObjectByIndex(new String("B6"))->PutValue("Customer4"); | |
// Save the output Excel file with inserted data | |
CreateWorkbook->Save(new String ("WorkbookOutput.xlsx")); | |
} | |
}; | |
يمكنك * إنشاء ملف Excel باستخدام C ++ * عن طريق إنشاء مصنف فارغ وإدخال بيانات وقيم نموذجية في الخلايا. لا تحتاج إلى تثبيت MS Excel أو أي تطبيق آخر لإنشاء ملف Excel باستخدام مقتطف الشفرة هذا. في المثال السابق ، تعلمنا كيفية إضافة عامل تصفية في ملف XLSX باستخدام C ++ الذي يشرح إضافة عامل تصفية في ملف XLSX.