Başlarken

Kurulum

Aspose Cells ila NuGet’i yükleyin

NuGet Aspose.Cells for C++ indirip kurmanın en kolay yolu.

  1. Bir Microsoft Visual Studio projesi for C++ oluşturun.
  2. “Aspose.Cells.h” başlık dosyasını ekleyin.
  3. Microsoft Visual Studio ve NuGet paket yöneticisini açın.
  4. İstediğiniz Aspose.Cells for C++‘i bulmak için “aspose.cells.cpp” araması yapın.
  5. “Yükle"ye tıklayın, Aspose.Cells for C++ indirilecek ve projenizde referans gösterilecektir.

Aspose Cells ila NuGet’i yükleyin

aspose.cells için nuget web sayfasından da indirebilirsiniz: Aspose.Cells for C++ NuGet Paket

Ayrıntılar için daha fazla adım

Aspose.Cells for C++‘i Windows’de kullanmak için bir demo

  1. Aşağıdaki sayfadan Aspose.Cells for C++‘i indirin: İndir Aspose.Cells for C++(Windows)
  2. Paketi açın ve Aspose.Cells for C++‘in nasıl kullanılacağına dair bir Demo bulacaksınız.
  3. Demo.sln dosyasını Visual Studio 2017 veya daha yüksek sürümle açın
  4. main.cpp: bu dosya test etmek için nasıl kod yazılacağını gösterir Aspose.Cells for C++
  5. sourceFile/resultFile: bu iki klasör main.cpp’de kullanılan depolama dizinleridir.

Linux işletim sisteminde Aspose.Cells for C++ nasıl kullanılır?

  1. Aşağıdaki sayfadan Aspose.Cells for C++‘i indirin: İndir Aspose.Cells for C++(Linux)
  2. Paketi açın ve Linux için Aspose.Cells for C++‘in nasıl kullanılacağına dair bir Demo bulacaksınız.
  3. Linux komut satırınızda “cd Demo"yu çalıştırın
  4. “rm -rf build;mkdir build;cd build” komutunu çalıştırın
  5. “cmake ..” komutunu çalıştırın, Demo klasöründe CMakeLists.txt tarafından bir Makefile oluşturacaktır.
  6. Derlemek için “make” komutunu çalıştırın
  7. “./demo” komutunu çalıştırın, sonucu göreceksiniz

Hello World Uygulamasını Oluşturma

Aşağıdaki adımlar, Aspose.Cells API’i kullanarak Hello World uygulamasını oluşturur:

  1. örneğini oluşturunÇalışma kitabı sınıf.
  2. Ehliyetin varsa o zamanuygula. Değerlendirme sürümünü kullanıyorsanız, lisansla ilgili kod satırlarını atlayın.
  3. Excel dosyasındaki bir çalışma sayfasının istediğiniz herhangi bir hücresine erişin.
  4. " kelimelerini girinHello World!” erişilen bir hücreye.
  5. Değiştirilen Microsoft Excel dosyasını oluşturun.

Yukarıdaki adımların uygulanması aşağıdaki örneklerde gösterilmektedir.

Kod Örneği: Yeni Bir Çalışma Kitabı Oluşturma

Aşağıdaki örnek, sıfırdan yeni bir çalışma kitabı oluşturur, ekler “Hello World!” ilk çalışma sayfasındaki A1 hücresine girer ve Excel dosyasını kaydeder.

#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());
}
}

Kod Örneği: Mevcut Bir Dosyayı Açma

Aşağıdaki örnek, mevcut bir Microsoft Excel şablon dosyasını açar, bir hücre alır ve A1 hücresindeki değeri kontrol eder.

#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());
}
}