入門
Contents
[
Hide
]
このページでは、Aspose Cells for C++ をインストールして Hello World アプリケーションを作成する方法を説明します。
インストール
Aspose Cells から NuGet をインストールします
NuGet は、Aspose.Cells for C++ をダウンロードしてインストールする最も簡単な方法です。
- Microsoft Visual Studio プロジェクト for C++ を作成します。
- ヘッダー ファイル「Aspose.Cells.h」をインクルードします。
- Microsoft Visual Studio と NuGet パッケージ マネージャーを開きます。
- 「aspose.cells.cpp」を検索して、目的の Aspose.Cells for C++ を見つけます。
- [インストール] をクリックすると、Aspose.Cells for C++ がダウンロードされ、プロジェクトで参照されます。
aspose.cells の nuget Web ページからダウンロードすることもできます。 Aspose.Cells for C++ NuGet パッケージ
Windows で Aspose.Cells for C++ を使用するためのデモ
- 次のページから Aspose.Cells for C++ をダウンロードします。 ダウンロード Aspose.Cells for C++(Windows)
- パッケージを解凍すると、Aspose.Cells for C++ の使用方法に関するデモが見つかります。
- Visual Studio 2017 以降のバージョンで Demo.sln を開きます
- main.cpp: このファイルは、Aspose.Cells for C++ をテストするためのコーディング方法を示しています。
- sourceFile/resultFile: これら 2 つのフォルダーは、main.cpp で使用されるストレージ ディレクトリです。
Linux OS で Aspose.Cells for C++ を使用する方法
- 次のページから Aspose.Cells for C++ をダウンロードします。 ダウンロード Aspose.Cells for C++(Linux)
- パッケージを解凍すると、Linux で Aspose.Cells for C++ を使用する方法に関するデモが見つかります。
- Linux コマンド ラインで「cd Demo」を実行します。
- 「rm -rf build;mkdir build;cd build」を実行します
- 「cmake ..」を実行すると、Demo フォルダに CMakeLists.txt で Makefile が作成されます 6.「make」を実行してコンパイルします
- 「./demo」を実行すると、結果が表示されます
Hello World アプリケーションの作成
以下の手順では、Aspose.Cells API を使用して Hello World アプリケーションを作成します。
- のインスタンスを作成しますワークブッククラス。
- 免許をお持ちの方は、それを適用する. 評価版を使用している場合は、ライセンス関連のコード行をスキップしてください。
- Excel ファイル内のワークシートの目的のセルにアクセスします。
- “という言葉を挿入します。Hello World!” アクセスされたセルに。
- 変更された Microsoft Excel ファイルを生成します。
上記の手順の実装は、以下の例で示されています。
コード サンプル: 新しいワークブックの作成
次の例では、新しいワークブックを最初から作成し、"Hello World!" を最初のワークシートのセル A1 に入力し、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()); | |
} | |
} |
コード サンプル: 既存のファイルを開く
次の例では、既存の Microsoft Excel テンプレート ファイルを開き、セルを取得して、セル 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()); | |
} | |
} |