Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
To Join Tables 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 NodeType
class JoiningTables:
def __init__(self):
dataDir = Settings.dataDir + 'programming_documents/'
# Load the document.
doc = Document(dataDir + "tableDoc.doc")
# Get the first and second table in the document.
# The rows from the second table will be appended to the end of the first table.
firstTable = doc.getChild(NodeType.TABLE, 0, True)
secondTable = doc.getChild(NodeType.TABLE, 1, True)
# Append all rows from the current table to the next.
# Due to the design of tables even tables with different cell count and widths can be joined into one table.
while (secondTable.hasChildNodes()) :
firstTable.getRows().add(secondTable.getFirstRow())
# Remove the empty table container.
secondTable.remove()
doc.save(dataDir + "JoinTables.doc")
print "Done."
if __name__ == '__main__':
JoiningTables()
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.