Komma igång

Installation

Installera Aspose Cells till NuGet

NuGet är det enklaste sättet att ladda ner och installera Aspose.Cells for C++.

  1. Skapa ett Microsoft Visual Studio-projekt for C++.
  2. Inkludera rubrikfilen “Aspose.Cells.h”.
  3. Öppna Microsoft Visual Studio och NuGet pakethanterare.
  4. Sök “aspose.cells.cpp” för att hitta önskad Aspose.Cells for C++.
  5. Klicka på “Installera”, Aspose.Cells for C++ kommer att laddas ner och refereras till i ditt projekt.

Installera Aspose Cells till NuGet

Du kan också ladda ner den från webbsidan nuget för aspose.cells: Aspose.Cells for C++ NuGet Paket

Fler steg för detaljer

En demo för att använda Aspose.Cells for C++ på Windows

  1. Ladda ner Aspose.Cells for C++ från följande sida: Ladda ner Aspose.Cells for C++(Windows)
  2. Packa upp paketet så hittar du en demo som handlar om hur du använder Aspose.Cells for C++.
  3. Öppna Demo.sln med Visual Studio 2017 eller högre version
  4. main.cpp: den här filen visar hur man kodar för att testa Aspose.Cells for C++
  5. sourceFile/resultFile: dessa två mappar är lagringskataloger som används i main.cpp

Hur man använder Aspose.Cells for C++ på Linux OS

  1. Ladda ner Aspose.Cells for C++ från följande sida: Ladda ner Aspose.Cells for C++(Linux)
  2. Packa upp paketet så hittar du en demo som handlar om hur du använder Aspose.Cells for C++ för Linux.
  3. Kör “cd Demo” i din Linux-kommandorad
  4. Kör “rm -rf build;mkdir build;cd build”
  5. Kör “cmake ..” kommer att skapa en Makefile av CMakeLists.txt i Demo-mappen
  6. Kör “make” för att kompilera
  7. Kör “./demo” så ser du resultatet

Skapar Hello World-applikationen

Stegen nedan skapar Hello World-applikationen med hjälp av Aspose.Cells API:

  1. Skapa en instans avArbetsbok klass.
  2. Om du har en licens, dåtillämpa den. Om du använder utvärderingsversionen, hoppa över de licensrelaterade kodraderna.
  3. Få åtkomst till valfri cell i ett kalkylblad i Excel-filen.
  4. Infoga orden “Hello World!” in i en cell som nås.
  5. 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.

#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.

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