本文将介绍通过使用Spire.Doc for Java 在Java 程序中复制Word表格行或者列的方法。
复制表格行
import com.spire.doc.*;
public class CopyRow {
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);
//复制第三行,并将复制后的行插入到表格作为第五行
TableRow row = table.getRows().get(2).deepClone();
table.getRows().insert(4,row);
//保存文档
doc.saveToFile("CopyRow.docx",FileFormat.Docx_2013);
doc.dispose();
}
}
表格行复制效果:
复制表格列
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);//默认在每行最后添加复制后的单元格
row.getCells().insert(2,cell);//在指定位置插入复制后的单元格
}
//保存文档
doc.saveToFile("CopyColumn1.docx",FileFormat.Docx_2013);
doc.dispose();
}
}
表格列复制效果: