import com.spire.doc.*;
public class CopyColumn {
public static void main(String[] args) {
//加载测试文档
Document doc = new Document();
doc.loadFromFile("test.docx");
//获取表格
Section section = doc.getSections().get(0);
Table table =section.getTables().get(0);
//遍历表格每行
for (int i = 0; i < table.getRows().getCount(); i++) {
//复制表格中每行的最后一个单元格,复制,并新添加一列到表格
TableRow row = table.getRows().get(i);
TableCell cell = (TableCell) row.getCells().getLastItem().deepClone();
row.getCells().add(cell);
}
//保存文档
doc.saveToFile("CopyColumn.docx",FileFormat.Docx_2013);
doc.dispose();
}
}