1

以下のコードを使用して、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*/

テーブルをページの左、中央、または右に揃える方法が見つかりませんでした。これを行う方法はありますか?

また、最初の行の内容は太字にする必要があります。ヘッダーを太字に設定する方法はありますか?

4

2 に答える 2

2

次の関数を使用してテーブルを整列できます

public void setTableAlignment(XWPFTable table, STJc.Enum justification) {
    CTTblPr tblPr = table.getCTTbl().getTblPr();
    CTJc jc = (tblPr.isSetJc() ? tblPr.getJc() : tblPr.addNewJc());
    jc.setVal(justification);
}
于 2015-08-22T19:06:08.137 に答える