ابدء
Contents
[
Hide
]
ستوضح لك هذه الصفحة كيفية تثبيت Aspose Cells for C++ وإنشاء تطبيق Hello World.
التركيب
قم بتثبيت Aspose Cells حتى NuGet
NuGet هو أسهل طريقة لتنزيل وتثبيت Aspose.Cells for C++.
- قم بإنشاء Microsoft مشروع Visual Studio for C++.
- قم بتضمين ملف الرأس “Aspose.Cells.h”.
- افتح Microsoft Visual Studio و NuGet مدير الحزم.
- ابحث عن “aspose.cells.cpp” للعثور على Aspose.Cells for C++ المطلوب.
- انقر فوق “تثبيت” ، سيتم تنزيل Aspose.Cells for C++ والإشارة إليه في مشروعك.
! [تثبيت Aspose Cells حتى NuGet] (InstallThroughNuget.png)
يمكنك أيضًا تنزيله من صفحة الويب nuget لغرض معين. Aspose.Cells for C++ NuGet الحزمة
مزيد من الخطوات للحصول على التفاصيل
عرض توضيحي لاستخدام Aspose.Cells for C++ على Windows
- تنزيل Aspose.Cells for C++ من الصفحة التالية: تحميل Aspose.Cells for C++ (Windows)
- قم بفك ضغط الحزمة وستجد عرضًا توضيحيًا يوضح كيفية استخدام Aspose.Cells for C++.
- افتح Demo.sln باستخدام Visual Studio 2017 أو إصدار أعلى
- main.cpp: يوضح هذا الملف كيفية كتابة التعليمات البرمجية لاختبار Aspose.Cells for C++
- sourceFile / resultFile: هذين المجلدين هما مجلدات التخزين المستخدمة في main.cpp
كيفية استخدام Aspose.Cells for C++ على Linux OS
- تنزيل Aspose.Cells for C++ من الصفحة التالية: تنزيل Aspose.Cells for C++ (Linux)
- قم بفك ضغط الحزمة وستجد عرضًا توضيحيًا حول كيفية استخدام for C++ Aspose.Cells لنظام التشغيل Linux.
- قم بتشغيل “cd Demo” في سطر أوامر Linux
- قم بتشغيل “rm -rf build؛ mkdir build؛ cd build”
- سيؤدي تشغيل “cmake ..” إلى إنشاء ملف Makefile بواسطة CMakeLists.txt في مجلد العرض التوضيحي
- قم بتشغيل “make” للترجمة
- قم بتشغيل “./demo” سترى النتيجة
إنشاء تطبيق Hello World
تؤدي الخطوات أدناه إلى إنشاء تطبيق Hello World باستخدام Aspose.Cells API:
- قم بإنشاء مثيل لـدفتر العمل صف دراسي.
- إذا كان لديك ترخيص ، إذنقم بتطبيقه. إذا كنت تستخدم الإصدار التقييمي ، فتخط سطور التعليمات البرمجية المتعلقة بالترخيص.
- قم بالوصول إلى أي خلية مرغوبة من ورقة العمل في ملف Excel.
- تضاف عبارة “Hello World!“في خلية تم الوصول إليها.
- قم بإنشاء ملف Excel Microsoft المعدل.
يتم توضيح تنفيذ الخطوات المذكورة أعلاه في الأمثلة أدناه.
نموذج التعليمات البرمجية: إنشاء مصنف جديد
ينشئ المثال التالي مصنفًا جديدًا من البداية ، يُدرج “Hello World!“في الخلية A1 في ورقة العمل الأولى ويحفظ ملف Excel.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "Aspose.Cells.h" | |
int main(void) | |
{ | |
try | |
{ | |
// Create a License object | |
intrusive_ptr<License> license = new License(); | |
// Set the license of Aspose.Cells to avoid the evaluation limitations | |
license->SetLicense(new String("Aspose.Cells.lic")); | |
// Instantiate a Workbook object that represents Excel file. | |
intrusive_ptr<IWorkbook> wb = Factory::CreateIWorkbook(); | |
// When you create a new workbook, a default "Sheet1" is added to the workbook. | |
intrusive_ptr <IWorksheet> sheet = wb->GetIWorksheets()->GetObjectByIndex(0); | |
// Access the "A1" cell in the sheet. | |
intrusive_ptr <ICell> cell = sheet->GetICells()->GetObjectByIndex(new String("A1")); | |
// Input the "Hello World!" text into the "A1" cell | |
cell->PutValue((StringPtr)(new String("Hello World!"))); | |
// Save the Excel file. | |
wb->Save(new String("MyBook_out.xlsx")); | |
} | |
catch (Exception& ex) | |
{ | |
Console::WriteLine(ex.GetMessageExp()); | |
} | |
} |
نموذج التعليمات البرمجية: فتح ملف موجود
يفتح المثال التالي ملف قالب Excel Microsoft موجود ، ويحصل على خلية ويتحقق من القيمة في الخلية A1.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "Aspose.Cells.h" | |
/*Check result*/ | |
#define EXPECT_TRUE(condition) \ | |
if (condition) printf("--%s,line:%d -> Ok --\n", __FUNCTION__, __LINE__); \ | |
else printf("--%s,line:%d->>>> Failed!!!! <<<<--\n", __FUNCTION__, __LINE__); | |
int main(void) | |
{ | |
try | |
{ | |
// Create a License object | |
intrusive_ptr<License> license = new License(); | |
// Set the license of Aspose.Cells to avoid the evaluation limitations | |
//license->SetLicense(new String("Aspose.Cells.lic")); | |
// Instantiate a Workbook object that represents Excel file. | |
intrusive_ptr<IWorkbook> wb = Factory::CreateIWorkbook(new String("MyBook_out.xlsx")); | |
// When you create a new workbook, a default "Sheet1" is added to the workbook. | |
intrusive_ptr <IWorksheet> sheet = wb->GetIWorksheets()->GetObjectByIndex(0); | |
// Access the "A1" cell in the sheet. | |
intrusive_ptr <ICell> cell = sheet->GetICells()->GetObjectByIndex(new String("A1")); | |
StringPtr strRet = cell->GetStringValue(); | |
//check value | |
EXPECT_TRUE(StringHelperPal::Compare(strRet,(StringPtr)(new String("Hello World!")))==0); | |
// Save the Excel file. | |
wb->Save(new String("MyBook_out.xlsx")); | |
} | |
catch (Exception& ex) | |
{ | |
Console::WriteLine(ex.GetMessageExp()); | |
} | |
} |