Başlarken
Contents
[
Hide
]
Bu sayfa size Aspose Cells for C++‘i nasıl kuracağınızı ve Hello World uygulamasını nasıl oluşturacağınızı gösterecek.
Kurulum
Aspose Cells ila NuGet’i yükleyin
NuGet Aspose.Cells for C++ indirip kurmanın en kolay yolu.
- Bir Microsoft Visual Studio projesi for C++ oluşturun.
- “Aspose.Cells.h” başlık dosyasını ekleyin.
- Microsoft Visual Studio ve NuGet paket yöneticisini açın.
- İstediğiniz Aspose.Cells for C++‘i bulmak için “aspose.cells.cpp” araması yapın.
- “Yükle"ye tıklayın, Aspose.Cells for C++ indirilecek ve projenizde referans gösterilecektir.
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
- Aşağıdaki sayfadan Aspose.Cells for C++‘i indirin: İndir Aspose.Cells for C++(Windows)
- Paketi açın ve Aspose.Cells for C++‘in nasıl kullanılacağına dair bir Demo bulacaksınız.
- Demo.sln dosyasını Visual Studio 2017 veya daha yüksek sürümle açın
- main.cpp: bu dosya test etmek için nasıl kod yazılacağını gösterir Aspose.Cells for C++
- 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?
- Aşağıdaki sayfadan Aspose.Cells for C++‘i indirin: İndir Aspose.Cells for C++(Linux)
- Paketi açın ve Linux için Aspose.Cells for C++‘in nasıl kullanılacağına dair bir Demo bulacaksınız.
- Linux komut satırınızda “cd Demo"yu çalıştırın
- “rm -rf build;mkdir build;cd build” komutunu çalıştırın
- “cmake ..” komutunu çalıştırın, Demo klasöründe CMakeLists.txt tarafından bir Makefile oluşturacaktır.
- Derlemek için “make” komutunu çalıştırın
- “./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:
- örneğini oluşturunÇalışma kitabı sınıf.
- Ehliyetin varsa o zamanuygula. Değerlendirme sürümünü kullanıyorsanız, lisansla ilgili kod satırlarını atlayın.
- Excel dosyasındaki bir çalışma sayfasının istediğiniz herhangi bir hücresine erişin.
- " kelimelerini girinHello World!” erişilen bir hücreye.
- 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.
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()); | |
} | |
} |
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.
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()); | |
} | |
} |