克隆文档

克隆文档是创建原始文档的相同副本的过程,这可以提高性能并避免潜在的内存泄漏。

本文将解释克隆文档的主要用例以及如何使用 Aspose.Words 创建文档克隆。

克隆文档的操作

克隆操作使您可以更快地创建文档,因为您无需每次都从文件加载和解析文档。

创建文档的克隆后,您将能够对其进行编辑并对其执行不同的操作,例如,将其与原始文档进行比较、将其附加或插入到另一个文档中。您还可以在将克隆元素或其内容插入到另一个文档之前对其进行修改。

创建文档克隆

Aspose.Words 允许您使用 clone 方法克隆文档,该方法执行文档的深层复制并返回它。换句话说,它将获得 DOM 的完整副本。 clone 方法加快了文档生成速度,您只需一行代码即可获取文档的副本。

克隆会生成一个与原始文档内容相同的新文档,但具有原始文档每个节点的唯一副本。您还可以使用节点 clone 方法将克隆操作应用于文档节点,该方法允许您复制带有或不带有子节点的复合文档节点。

以下代码示例演示如何克隆文档并创建该文档中某个部分的副本:

# Create a document.
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
builder.writeln("This is the original document before applying the clone method")

# Clone the document.
clone = doc.clone().as_document()

# Edit the cloned document.
builder = aw.DocumentBuilder(clone)
builder.write("Section 1")
builder.insert_break(aw.BreakType.SECTION_BREAK_NEW_PAGE)
builder.write("Section 2")

# This shows what is in the document originally. The document has two sections.
self.assertEqual(clone.sections.count, 2)

# Duplicate the last section and append the copy to the end of the document.
lastSectionIdx = clone.sections.count - 1
newSection = clone.sections[lastSectionIdx].clone()
clone.sections.add(newSection)

# Check what the document contains after we changed it.
self.assertEqual(clone.sections.count, 3)