在没有 MS Office 的情况下用 C++ 创建 MS Excel 电子表格 – 综合指南

用 C++ 创建 Excel 文件

以前,我写了一个帖子关于如何实现Excel的自动化功能,并使用C#从头开始创建Excel的XLS / XLSX文件。今天,我将向您展示如何使用 C++ 创建 Excel 工作簿、向 Excel 工作表插入数据、计算公式以及在工作表中创建图表和表格。所有电子表格自动化功能都将由 C++ Excel API – Aspose.Cells for C++ 提供支持

Aspose.Cells for C++ 是一个原生的 C++ 库,让您无需 Microsoft Excel 即可创建、读取、解析和转换电子表格文档。它提供了一整套 Excel 自动化功能,可用于生成和操作 XLS/XLSX 电子表格。在本文中,我们将介绍从头开始创建 Excel XLS/XLSX 文件的以下功能。

C++ Excel 电子表格 API – 安装

您可以从下载部分下载Aspose.Cells for C++ 的完整库文件包该软件包还包含一个随时可以运行的示例控制台应用程序。

使用 C++ 创建 Excel 文件 (XLS/XLSX)

让我们首先从头开始创建一个简单的 Excel XLSX 工作簿。工作簿由一个或多个工作表组成,每个工作表包含行和列形式的数据。因此,为了创建 Excel 电子表格,您需要先创建一个工作簿,然后在其中添加工作表。以下是使用 Aspose.Cells for C++ 创建 Excel 文件的步骤。

以下代码示例展示了如何使用 C++ 创建 Excel XLSX 文件。

/*create a new workbook*/
intrusive_ptr<IWorkbook> wb = Factory::CreateIWorkbook();
/*get the first worksheet*/
intrusive_ptr<IWorksheetCollection> wsc = wb->GetIWorksheets();
intrusive_ptr<IWorksheet> ws = wsc->GetObjectByIndex(0);
/*get cell(0,0)*/
intrusive_ptr<ICells> cells = ws->GetICells();
intrusive_ptr<ICell> cell = cells->GetObjectByIndex(0, 0);
/*write "Hello World" to cell(0,0) of the first sheet*/
intrusive_ptr<String> str = new String("Hello World!");
cell->PutValue(str);
/*save this workbook to resultFile folder*/
wb->Save(resultPath->StringAppend(new String("workbook.xlsx")));

Excel 工作簿

下面是我们刚刚创建的 Excel 工作簿的截图。

用 C++ 创建 Excel XLSX

使用 C++ 将数据添加到 Excel 工作表

在前面的示例中,我们已经看到了如何创建一个简单的 Excel 文件并使用行和列索引将值插入到特定单元格中。但是,大多数情况下,Excel 工作表中的单元格是使用列字母和行号(例如 A1、A2、B1 等)来标识的。因此,让我们看一下如何使用单元格名称将数据插入工作表的示例。该过程仅在向单元格添加值方面有所不同,创建 Excel 工作簿和工作表的所有其他步骤都相同。

以下代码示例展示了如何使用 C++ 创建 Excel XLSX 工作簿并将数据插入其中。

//Path of output excel file
StringPtr outputData = resultPath->StringAppend(new String("outputData.xlsx"));
//Read input excel file
intrusive_ptr<IWorkbook> workbook = Factory::CreateIWorkbook();
//Accessing the second worksheet in the Excel file
intrusive_ptr<IWorksheet> worksheet = workbook->GetIWorksheets()->GetObjectByIndex(0);
//Adding a string value to the cell
worksheet->GetICells()->GetObjectByIndex(new String("A1"))->PutValue("Hello World");
//Adding a double value to the cell
worksheet->GetICells()->GetObjectByIndex(new String("A2"))->PutValue(20.5);
//Adding an integer value to the cell
worksheet->GetICells()->GetObjectByIndex(new String("A3"))->PutValue(15);
//Adding a boolean value to the cell
worksheet->GetICells()->GetObjectByIndex(new String("A4"))->PutValue(true);
//Setting the display format of the date
intrusive_ptr<ICell> cell = worksheet->GetICells()->GetObjectByIndex(new String("A5"));
intrusive_ptr<IStyle> style = cell->GetIStyle();
style->SetNumber(15);
cell->SetIStyle(style);
//Save the workbook
workbook->Save(outputData);

使用 C++ 计算工作簿公式

在 Excel 工作簿中设置公式是对数据执行计算的一项了不起的功能。它使对数据进行有效和高效的复杂计算变得非常容易。以下是在 Excel 工作表中设置和计算公式的步骤。

以下代码示例展示了如何使用 C++ 在 Excel XLSX 工作簿中添加和计算公式。

//Create a new workbook
intrusive_ptr<IWorkbook> wb = Factory::CreateIWorkbook();
//Get first worksheet which is created by default
intrusive_ptr<IWorksheet> ws = wb->GetIWorksheets()->GetObjectByIndex(0);
//Adding a value to "A1" cell
intrusive_ptr<ICell> cell = ws->GetICells()->GetObjectByIndex(new String("A1"));
cell->PutValue(5);
//Adding a value to "A2" cell
cell = ws->GetICells()->GetObjectByIndex(new String("A2"));
cell->PutValue(15);
//Adding a value to "A3" cell
cell = ws->GetICells()->GetObjectByIndex(new String("A3"));
cell->PutValue(25);
//Adding SUM formula to "A4" cell
cell = ws->GetICells()->GetObjectByIndex(new String("A4"));
cell->SetFormula(new String("=SUM(A1:A3)"));
//Calculating the results of formulas
wb->CalculateFormula();
//Get the calculated value of the cell "A4" and print it on console
cell = ws->GetICells()->GetObjectByIndex(new String("A4"));
StringPtr sCalcuInfo = new String(L"Calculated Value of Cell A4: ");
Console::WriteLine(sCalcuInfo->StringAppend(cell->GetStringValue()));

使用 C++ 在 Excel 工作表中创建表格

Excel 工作表中的表格用于组织位于一系列单元格中的一组数据。表格还可以帮助您维护工作表中不同类型的列表。以下是在 Excel 工作表中创建表格的步骤。

以下代码示例展示了如何使用 C++ 在 Excel XLSX 文件中创建表格。

// Instantiate a Workbook object
intrusive_ptr<IWorkbook> workbook = Factory::CreateIWorkbook();
// Obtaining the reference of the default(first) worksheet
intrusive_ptr<IWorksheet> worksheet = workbook->GetIWorksheets()->GetObjectByIndex(0);
// Obtaining Worksheet's cells collection
intrusive_ptr<ICells> cells = worksheet->GetICells();
// Setting the value to the cells
cells->GetObjectByIndex(new String("A1"))->PutValue("Employee");
cells->GetObjectByIndex(new String("B1"))->PutValue("Quarter");
cells->GetObjectByIndex(new String("C1"))->PutValue("Product");
cells->GetObjectByIndex(new String("D1"))->PutValue("Continent");
cells->GetObjectByIndex(new String("E1"))->PutValue("Country");
cells->GetObjectByIndex(new String("F1"))->PutValue("Sale");
cells->GetObjectByIndex(new String("A2"))->PutValue("David");
cells->GetObjectByIndex(new String("A3"))->PutValue("David");
cells->GetObjectByIndex(new String("A4"))->PutValue("David");
cells->GetObjectByIndex(new String("A5"))->PutValue("David");
cells->GetObjectByIndex(new String("A6"))->PutValue("James");
cells->GetObjectByIndex(new String("B2"))->PutValue(1);
cells->GetObjectByIndex(new String("B3"))->PutValue(2);
cells->GetObjectByIndex(new String("B4"))->PutValue(3);
cells->GetObjectByIndex(new String("B5"))->PutValue(4);
cells->GetObjectByIndex(new String("B6"))->PutValue(1);
cells->GetObjectByIndex(new String("C2"))->PutValue("Maxilaku");
cells->GetObjectByIndex(new String("C3"))->PutValue("Maxilaku");
cells->GetObjectByIndex(new String("C4"))->PutValue("Chai");
cells->GetObjectByIndex(new String("C5"))->PutValue("Maxilaku");
cells->GetObjectByIndex(new String("C6"))->PutValue("Chang");
cells->GetObjectByIndex(new String("D2"))->PutValue("Asia");
cells->GetObjectByIndex(new String("D3"))->PutValue("Asia");
cells->GetObjectByIndex(new String("D4"))->PutValue("Asia");
cells->GetObjectByIndex(new String("D5"))->PutValue("Asia");
cells->GetObjectByIndex(new String("D6"))->PutValue("Europe");
cells->GetObjectByIndex(new String("E2"))->PutValue("China");
cells->GetObjectByIndex(new String("E3"))->PutValue("India");
cells->GetObjectByIndex(new String("E4"))->PutValue("Korea");
cells->GetObjectByIndex(new String("E5"))->PutValue("India");
cells->GetObjectByIndex(new String("E6"))->PutValue("France");
cells->GetObjectByIndex(new String("F2"))->PutValue(2000);
cells->GetObjectByIndex(new String("F3"))->PutValue(500);
cells->GetObjectByIndex(new String("F4"))->PutValue(1200);
cells->GetObjectByIndex(new String("F5"))->PutValue(1500);
cells->GetObjectByIndex(new String("F6"))->PutValue(500);
// Adding a new List Object to the worksheet
worksheet->GetIListObjects()->Add(new String("A1"), new String("F6"), true);
intrusive_ptr<IListObject> listObject = worksheet->GetIListObjects()->GetObjectByIndex(0);
// Adding Default Style to the table
listObject->SetTableStyleType(TableStyleType_TableStyleMedium10);
// Show Total
listObject->SetShowTotals(true);
// Saving the Excel file
workbook->Save(resultPath->StringAppend(new String("Excel_Table.xlsx")));

带表格的 Excel 工作簿

用C++在Excel中创建表格

使用 C++ 在 Excel 电子表格中创建图表

Excel 电子表格中的图表用于使用不同类型的图形对象来可视化数据。它们使我们能够快速洞察和理解数据,尤其是在数据量巨大的情况下。Aspose.Cells for C++ 支持多种图表,包括 Sunburst、Treemap、Histogram、Pyramid、Bubble、Line等等以下是使用 Aspose.Cells for C++ 在 Excel 工作簿中创建图表的步骤。

以下代码示例展示了如何使用 C++ 在 Excel XLSX 文件中创建图表。

// Path of output excel file
StringPtr outputChartTypePyramid = resultPath->StringAppend(new String("Exce_Pyramid_Chart.xlsx"));
// Create a new workbook
intrusive_ptr<IWorkbook> workbook = Factory::CreateIWorkbook();
// Get first worksheet which is created by default
intrusive_ptr<IWorksheet> worksheet = workbook->GetIWorksheets()->GetObjectByIndex(0);
// Adding sample values to cells
worksheet->GetICells()->GetObjectByIndex(new String("A1"))->PutValue(50);
worksheet->GetICells()->GetObjectByIndex(new String("A2"))->PutValue(100);
worksheet->GetICells()->GetObjectByIndex(new String("A3"))->PutValue(150);
worksheet->GetICells()->GetObjectByIndex(new String("B1"))->PutValue(4);
worksheet->GetICells()->GetObjectByIndex(new String("B2"))->PutValue(20);
worksheet->GetICells()->GetObjectByIndex(new String("B3"))->PutValue(50);
// Adding a chart to the worksheet
int chartIndex = worksheet->GetICharts()->Add(Aspose::Cells::Charts::ChartType::ChartType_Pyramid, 5, 0, 20, 8);
// Accessing the instance of the newly added chart
intrusive_ptr<Aspose::Cells::Charts::IChart> chart = worksheet->GetICharts()->GetObjectByIndex(chartIndex);
// Adding SeriesCollection (chart data source) to the chart ranging from "A1" cell to "B3"
chart->GetNISeries()->Add(new String("A1:B3"), true);
// Saving the Excel file
workbook->Save(outputChartTypePyramid);

带图表的 Excel 工作簿

用C++在Excel中创建图表

结论

在本文中,我们介绍了如何使用 C++ 从头开始​​创建 MS Excel 电子表格。本文还包含有关如何在 Excel 工作表中创建表格、图表和计算公式的分步指南和代码示例。您可以从Aspose.Cells for C++文档中了解有关 Excel 自动化的其他高级功能的更多信息

相关文章