以下のコードを使用して、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*/
テーブルをページの左、中央、または右に揃える方法が見つかりませんでした。これを行う方法はありますか?
また、最初の行の内容は太字にする必要があります。ヘッダーを太字に設定する方法はありますか?