Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
To append documents using Aspose.Words Java in Python, simply invoke the appendDocument() method of Document class and specify the second document to append at end.
Python Code
Document = jpype.JClass("com.aspose.words.Document")
doc1 = Document("data/doc1.doc")
doc2 = Document("data/doc2.doc")
ImportFormatMode = jpype.JClass("com.aspose.words.ImportFormatMode)
doc1.appendDocument(doc2), ImportFormatMode->KEEP_SOURCE_FORMATTING)
Download Append Documents (Aspose.Words) from any of the below mentioned social coding sites:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.