我需要有一个表格,其中第一行和第二行的单元格已合并.
像这样:
表的图像(我不能发布图片)http://i.stack.imgur.com/dAO6j.png
我一直在审查与该主题相关的所有问题,并且找到了将网格跨度应用于单元格的一些答案,但找不到真正的解决方案.
这是我从google和本网站获得的示例中的代码:
XWPFDocument document = new XWPFDocument();
XWPFTable table = document.createTable(7, 2);
fillTable(table);
XWPFTableCell cellRow1 = table.getRow(0).getCell(0);
XWPFTableCell cellRow2 = table.getRow(1).getCell(0);
cellRow1.getCTTc().addNewTcPr();
cellRow1.getCTTc().getTcPr().addNewGridSpan();
cellRow1.getCTTc().getTcPr().getGridSpan().setVal(BigInteger.valueOf(2L));
cellRow2.getCTTc().addNewTcPr();
cellRow2.getCTTc().getTcPr().addNewGridSpan();
cellRow2.getCTTc().getTcPr().getGridSpan().setVal(BigInteger.valueOf(2L));
FileOutputStream out = new FileOutputStream("Table.docx");
doc.write(out);
out.close();
我从这段代码中得到的是以下内容:
我试图用table.getRow(0).removeCell(1);删除“多余的”单元格.但这没用,我做错了吗?
解决方法:
似乎也必须删除xml:
XWPFTableCell removed = tableRow.getCell(idx);
removed.getCTTc().newCursor().removeXml();
tableRow.removeCell(idx);