文件编号.docx (21.2 KB)
Table table = document.getChildNodes(NodeType.TABLE, true).get(0);
int count1 = table.getRows().get(0).getCount();
table.convertToHorizontallyMergedCells();
int count2 = table.getRows().get(0).getCount();
count1计算出的列值正确为6,使用convertToHorizontallyMergedCells后计算count2 的值为12
使用convertToHorizontallyMergedCells计算出的表格不正确,请帮忙看看是什么原因