Iniziare
Contents
[
Hide
]
Questa pagina ti mostrerà come installare Aspose Cells for C++ e creare un’applicazione Hello World.
Installazione
Installa Aspose Cells tramite NuGet
NuGet è il modo più semplice per scaricare e installare Aspose.Cells for C++.
- Creare un progetto Visual Studio Microsoft for C++.
- Includere il file di intestazione “Aspose.Cells.h”.
- Aprire Microsoft Visual Studio e NuGet gestore pacchetti.
- Cerca “aspose.cells.cpp” per trovare il Aspose.Cells for C++ desiderato.
- Fare clic su “Installa”, Aspose.Cells for C++ verrà scaricato e referenziato nel progetto.
Puoi anche scaricarlo dalla pagina web nuget per aspose.cells: Aspose.Cells for C++ NuGet Confezione
Una demo per l’utilizzo di Aspose.Cells for C++ su Windows
- Scarica Aspose.Cells for C++ dalla seguente pagina: Scarica Aspose.Cells for C++(Windows)
- Decomprimi il pacchetto e troverai una demo che spiega come utilizzare Aspose.Cells for C++.
- Aprire Demo.sln con Visual Studio 2017 o versione successiva
- main.cpp: questo file mostra come codificare per testare Aspose.Cells for C++
- sourceFile/resultFile: queste due cartelle sono directory di archiviazione utilizzate in main.cpp
Come utilizzare Aspose.Cells for C++ su sistema operativo Linux
- Scarica Aspose.Cells for C++ dalla seguente pagina: Scarica Aspose.Cells for C++(Linux)
- Decomprimi il pacchetto e troverai una Demo che spiega come usare Aspose.Cells for C++ per Linux.
- Esegui “cd Demo” nella riga di comando di Linux
- Esegui “rm -rf build;mkdir build;cd build”
- Esegui “cmake ..” creerà un Makefile da CMakeLists.txt nella cartella Demo
- Eseguire “make” per compilare
- Esegui “./demo” vedrai il risultato
Creazione dell’applicazione Hello World
passaggi seguenti creano l’applicazione Hello World utilizzando Aspose.Cells API:
- Crea un’istanza diCartella di lavoro classe.
- Se hai una licenza, alloraapplicarlo. Se stai utilizzando la versione di valutazione, salta le righe di codice relative alla licenza.
- Accedi a qualsiasi cella desiderata di un foglio di lavoro nel file Excel.
- Inserisci le parole “Hello World!” in una cella a cui si accede.
- Genera il file Excel Microsoft modificato.
L’implementazione dei passaggi precedenti è dimostrata negli esempi seguenti.
Esempio di codice: creazione di una nuova cartella di lavoro
L’esempio seguente crea una nuova cartella di lavoro da zero, inserisce “Hello World!” nella cella A1 del primo foglio di lavoro e salva il file 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()); | |
} | |
} |
Esempio di codice: apertura di un file esistente
L’esempio seguente apre un file modello Excel Microsoft esistente, ottiene una cella e controlla il valore nella cella 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()); | |
} | |
} |