Aspose:InsertDocument with USE_DESTINATION_STYLES 不工作

Aspose: InsertDocument with USE_DESTINATION_STYLES not working

我正在尝试使用带有 ImportFormatMode.USE_DESTINATION_STYLES 选项的文档生成器对象将源文档插入到目标文档中。 (参见以下代码片段)

public static void main(String[] args) throws Exception {
    Document destDoc = new Document("/home/cipet/Downloads/destDoc.docx");
    Document srcDoc = new Document("/home/cipet/Downloads/srcDoc.docx");
    DocumentBuilder documentBuilder = new DocumentBuilder(destDoc);
    documentBuilder.insertDocument(srcDoc, ImportFormatMode.USE_DESTINATION_STYLES);
    documentBuilder.getDocument().save("/home/cipet/Downloads/final.docx");
}

但是最终文档没有生成预期的输出。 请让我知道使用目标文档样式生成最终文档的解决方案是什么。

有关更多详细信息,我在 aspose 论坛中附加了源、目标和预期输出 https://forum.aspose.com/t/insertdocument-with-use-destination-styles-not-working/227548

谢谢

当您使用 ImportFormatmode.USE_DESTINATION_STYLES 时,将使用目标文档中的样式。例如,如果在源文档中有 Heading1 样式的段落,将其插入目标文档后,将使用目标文档中的 Heading1 样式。

其实并不清楚你的预期输出是什么,所以我建议你在相应的forum中提出问题,并附上你的源、目标、输出和预期输出文件。