Word处理控件Aspose.Words功能演示:使用 C++ 处理 Word 文档中的目录

一、下载用于处理 Word 文档中的目录的 C++ API

Aspose.Words for C++是一个原生 C++ 库,允许您创建、阅读、修改和转换 Microsoft Word 文档。此外,它还支持处理 Word 文件中的目录。您可以通过NuGet安装 API,也可以直接从“下载”部分下载。

PM> Install-Package Aspose.Words.Cpp
二、在 Word 文档中添加目录

以下是在 Word 文档中添加目录的步骤。

  • 使用Document类加载 Word 文件。
  • 使用之前创建的Document对象创建DocumentBuilder类的实例。
  • 使用DocumentBuilder->InsertTableOfContents(System::String 开关)方法插入目录。
  • 使用Document->UpdateFields()方法填充目录。
  • 使用Document->Save(System::String fileName)方法保存 Word 文档。

以下示例代码展示了如何使用 C++ 在 Word 文档中添加目录。

// Source and output directory paths.System::String sourceDataDir = u"SourceDirectory\";System::String outputDataDir = u"OutputDirectory\";// Load the Word fileSystem::SharedPtr<Document> doc = System::MakeObject<Document>(sourceDataDir + u"Sample 5.docx");// Create an instance of the DocumentBuilder classSystem::SharedPtr<DocumentBuilder> builder = System::MakeObject<DocumentBuilder>(doc);// Insert a table of contents at the beginning of the document.builder->InsertTableOfContents(u"\o "1-3"" \h \z \u"");// The newly inserted table of contents will be initially empty.// It needs to be populated by updating the fields in the document.doc->UpdateFields();// Output file pathSystem::String outputPath = outputDataDir + u""AddTOC.docx"";// Save the Word filedoc->Save(outputPath);

Word处理控件Aspose.Words功能演示:使用 C++ 处理 Word 文档中的目录
三、从 Word 文档中提取目录

以下是从 Word 文档中提取目录的步骤。

  • 使用Document类加载 Word 文件。
  • 使用Document->get_Range()->get_Fields()方法检索字段并遍历它们。
  • 检查字段是否为FieldType::FieldHyperlink类型。
  • 检查该字段是否属于目录。
  • 检索并打印字段信息。

以下示例代码演示了如何使用 C++ 从 Word 文档中提取目录。

// Source direvctorySystem::String inputDataDir = u""SourceDirectory\"";// Load the Word fileSystem::SharedPtr<Document> doc = System::MakeObject<Document>(inputDataDir + u""SampleTOC.docx"");// Loop through the fieldsfor (System::SharedPtr<Field> field : System::IterateOver(doc->get_Range()->get_Fields())){// Get FieldHyperlink fieldsif (field->get_Type() == FieldType::FieldHyperlink){System::SharedPtr<FieldHyperlink> hyperlink = System::DynamicCast<FieldHyperlink>(field);// Check if field belongs to TOCif (hyperlink->get_SubAddress() != nullptr && hyperlink->get_SubAddress().StartsWith(u""_Toc"")){System::SharedPtr<Paragraph> tocItem = System::DynamicCast<Paragraph>(field->get_FieldStart()->GetAncestor(NodeType::Paragraph));std::cout << System::StaticCast<Node>(tocItem)->ToString(SaveFormat::Text).Trim().ToUtf8String() << std::endl;std::cout << ""------------------"" << std::endl;if (tocItem != nullptr){System::SharedPtr<Bookmark> bm = doc->get_Range()->get_Bookmarks()->idx_get(hyperlink->get_SubAddress());// Get the location this TOC Item is pointing toSystem::SharedPtr<Paragraph> pointer = System::DynamicCast<Paragraph>(bm->get_BookmarkStart()->GetAncestor(NodeType::Paragraph));std::cout << System::StaticCast<Node>(pointer)->ToString(SaveFormat::Text).ToUtf8String() << std::endl;}}}}
四、更新 Word 文档中的目录

如果文档的内容已经更新,并且您需要在目录中反映这些更改,您只需加载 Word 文件并调用Document->UpdateFields()方法。该方法会根据修改后的内容更新目录。在此之后,保存更新的 Word 文档。

五、从 Word 文档中删除目录

以下是从 Word 文档中删除目录的步骤。

  • 使用Document类加载 Word 文件。
  • 检索并存储FieldStart节点的列表。
  • 循环遍历节点,直到到达指定目录结尾的NodeType::FieldEnd类型的节点。
  • 使用Node->Remove()方法删除目录。
  • 使用Document->Save(System::String fileName)方法保存 Word 文档。

以下示例代码显示如何使用 C++ 从 Word 文档中删除目录。

void RemoveTableOfContents(const System::SharedPtr<Document>& doc

                                                        

声明:本站部分文章及图片源自用户投稿,如本站任何资料有侵权请您尽早请联系jinwei@zod.com.cn进行处理,非常感谢!

上一篇 2022年9月9日
下一篇 2022年9月9日

相关推荐

发表回复

登录后才能评论
software///author/jinwe2022"} }