Komma igång
Contents
[
Hide
]
Den här sidan visar hur du installerar Aspose Cells for C++ och skapar en Hello World-applikation.
Installation
Installera Aspose Cells till NuGet
NuGet är det enklaste sättet att ladda ner och installera Aspose.Cells for C++.
- Skapa ett Microsoft Visual Studio-projekt for C++.
- Inkludera rubrikfilen “Aspose.Cells.h”.
- Öppna Microsoft Visual Studio och NuGet pakethanterare.
- Sök “aspose.cells.cpp” för att hitta önskad Aspose.Cells for C++.
- Klicka på “Installera”, Aspose.Cells for C++ kommer att laddas ner och refereras till i ditt projekt.
Du kan också ladda ner den från webbsidan nuget för aspose.cells: Aspose.Cells for C++ NuGet Paket
En demo för att använda Aspose.Cells for C++ på Windows
- Ladda ner Aspose.Cells for C++ från följande sida: Ladda ner Aspose.Cells for C++(Windows)
- Packa upp paketet så hittar du en demo som handlar om hur du använder Aspose.Cells for C++.
- Öppna Demo.sln med Visual Studio 2017 eller högre version
- main.cpp: den här filen visar hur man kodar för att testa Aspose.Cells for C++
- sourceFile/resultFile: dessa två mappar är lagringskataloger som används i main.cpp
Hur man använder Aspose.Cells for C++ på Linux OS
- Ladda ner Aspose.Cells for C++ från följande sida: Ladda ner Aspose.Cells for C++(Linux)
- Packa upp paketet så hittar du en demo som handlar om hur du använder Aspose.Cells for C++ för Linux.
- Kör “cd Demo” i din Linux-kommandorad
- Kör “rm -rf build;mkdir build;cd build”
- Kör “cmake ..” kommer att skapa en Makefile av CMakeLists.txt i Demo-mappen
- Kör “make” för att kompilera
- Kör “./demo” så ser du resultatet
Skapar Hello World-applikationen
Stegen nedan skapar Hello World-applikationen med hjälp av Aspose.Cells API:
- Skapa en instans avArbetsbok klass.
- Om du har en licens, dåtillämpa den. Om du använder utvärderingsversionen, hoppa över de licensrelaterade kodraderna.
- Få åtkomst till valfri cell i ett kalkylblad i Excel-filen.
- Infoga orden “Hello World!” in i en cell som nås.
- Generera den modifierade Microsoft Excel-filen.
Implementeringen av stegen ovan visas i exemplen nedan.
Kodexempel: Skapa en ny arbetsbok
Följande exempel skapar en ny arbetsbok från början, infogar “Hello World!” i cell A1 på det första kalkylbladet och sparar Excel-filen.
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()); | |
} | |
} |
Kodexempel: Öppna en befintlig fil
Följande exempel öppnar en befintlig Microsoft Excel-mallfil, hämtar en cell och kontrollerar värdet i cellen 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()); | |
} | |
} |