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 for Jython. Here you can see example code.
Jython Code
from aspose-words import Settings
from com.aspose.words import Document
from com.aspose.words import ImportFormatMode
class AppendDocuments:
def __init__(self):
dataDir = Settings.dataDir + 'quickstart/'
dstDoc = Document(dataDir + 'TestFile.Destination.doc')
srcDoc = Document(dataDir + 'TestFile.Source.doc')
dstDoc.appendDocument(srcDoc,ImportFormatMode.KEEP_SOURCE_FORMATTING)
dstDoc.save(dataDir + 'AppendDocuments.doc')
print ("Documents appended successfully.")
if __name__ == '__main__':
AppendDocuments()
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.