Apache poi xwpf表对齐

时间:2015-07-14 12:11:41

标签: apache-poi xwpf

我正在xwpf中使用以下代码在Apache Poi中创建一个表:

          XWPFTable table = doc.createTable(Countrows1+1,4);
          table.getCTTbl().getTblPr().unsetTblBorders();
          table.setInsideHBorder(XWPFTable.XWPFBorderType.DASHED, 0,0,null);
          table.setInsideVBorder(XWPFTable.XWPFBorderType.DASHED,0,0, null);
          /* table header */

          table.getRow(0).getCell(0).setText("Column1");
          table.getRow(0).getCell(1).setText("Column2");
          table.getRow(0).getCell(2).setText("Column3");
          table.getRow(0).getCell(3).setText("Column");

          /* other rows to be populed here*/

我找不到任何方法可以将表格对齐到页面的左侧,中间或右侧。是否有任何方法可以执行此操作?

第一行的内容也应以粗体显示。有没有任何方法可以将标题设置为粗体?

2 个答案:

答案 0 :(得分:1)

您可以使用以下功能对齐表格

(?:^(like)(ly|s)?$)

答案 1 :(得分:0)

此代码适用于我:

public void setTableAlign(XWPFTable table,ParagraphAlignment align) {
    CTTblPr tblPr = table.getCTTbl().getTblPr();
    CTJc jc = (tblPr.isSetJc() ? tblPr.getJc() : tblPr.addNewJc());
    STJc.Enum en = STJc.Enum.forInt(align.getValue());
    jc.setVal(en);
}

你打电话给这样的方法:

XWPFTable table = documento.createTable();
setTableAlign(table, ParagraphAlignment.CENTER);