Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
To Join And Append documents using Aspose.Words Java for Jython. Here you can see sample code.
Jython Code
from aspose-words import Settings
from com.aspose.words import Document
from com.aspose.words import ImportFormatMode
from com.aspose.words import SectionStart
class AppendDocument:
def __init__(self):
self.dataDir = Settings.dataDir + 'programming_documents/'
self.simple_append_document()
self.keep_source_formatting()
def simple_append_document(self):
"""
Shows how to append a document to the end of another document using no additional options.
"""
dstDoc = Document(self.dataDir + "TestFile.Destination.doc")
srcDoc = Document(self.dataDir + "TestFile.Source.doc")
# Append the source document to the destination document using no extra options.
dstDoc.appendDocument(srcDoc, ImportFormatMode.KEEP_SOURCE_FORMATTING)
dstDoc.save(self.dataDir + "TestFile.SimpleAppendDocument Out.docx")
def keep_source_formatting(self):
"""
Shows how to append a document to the end of another document using no additional options.
"""
dstDoc = Document(self.dataDir + "TestFile.Destination.doc")
srcDoc = Document(self.dataDir + "TestFile.Source.doc")
# Append the source document to the destination document using no extra options.
dstDoc.appendDocument(srcDoc, ImportFormatMode.KEEP_SOURCE_FORMATTING)
dstDoc.save(self.dataDir + "TestFile.KeepSourceFormatting Out.docx")
if __name__ == '__main__':
AppendDocument()Download running code 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.