入门
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 包管理器。 4.搜索“aspose.cells.cpp”找到需要的Aspose.Cells for C++。 5.点击“安装”,Aspose.Cells for C++会被下载并引用到你的项目中。
也可以从aspose.cells的nuget网页下载: Aspose.Cells for C++ NuGet 包
在 Windows 上使用 Aspose.Cells for C++ 的演示
- 从以下页面下载 Aspose.Cells for C++: 下载 Aspose.Cells for C++(Windows) 2.解压压缩包,你会发现一个Demo是如何使用Aspose.Cells for C++。 3.用Visual Studio 2017或更高版本打开Demo.sln
- main.cpp:这个文件展示了如何编写代码来测试 Aspose.Cells for C++
- sourceFile/resultFile:这两个文件夹是main.cpp中使用的存放目录
如何在 Linux 操作系统上使用 Aspose.Cells for C++
- 从以下页面下载 Aspose.Cells for C++: 下载 Aspose.Cells for C++(Linux) 2.解压压缩包,你会发现一个Demo,是关于如何使用Aspose.Cells for C++ for Linux的。
- 在 Linux 命令行中运行“cd Demo”
- 运行“rm -rf build;mkdir build;cd build” 5.运行“cmake ..”将在Demo文件夹中通过CMakeLists.txt创建一个Makefile 6.运行“make”编译 7.运行“./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()); | |
} | |
} |