读取word里面的表格,在表格的后悔新增行数,现在想对表格的样式进行设置,尝试改几种方式,都没加成功。
XWPFTableRow newRow = table.insertNewTableRow(i+size);
XWPFTableCell cell = newRow.createCell();//在新增的行上面创建cell
String strings1 =null ;
newRow.getCell(j).setText(strings1);//给每个cell赋值。
帮忙看看。
尝试过加样式的方法
第一种
// CTTblPr tablePr = table.getCTTbl().addNewTblPr();
// CTTblWidth width = tablePr.addNewTblW();
// width.setType(STTblWidth.AUTO);
// width.setW(BigInteger.valueOf(50000));
第二种
// CTTblPr tblPr = table.getCTTbl().addNewTblPr();
// CTTblWidth width = tblPr.addNewTblW();
// tblPr.getTblW().setType(STTblWidth.DXA);
// tblPr.getTblW().setW(BigInteger.valueOf(7000));