gpt4 book ai didi

apache-poi - 如何在poi word中设置单元格setVerticalAlignment?

转载 作者:行者123 更新时间:2023-12-02 12:42:25 33 4
gpt4 key购买 nike

我想在poi word中设置单元格垂直对齐,但我发现它不起作用,这是我的代码。这是怎么回事?

XWPFTableCell cell = table.getRow(i).getCell(j);
cell.setVerticalAlignment(XWPFTableCell.XWPFVertAlign.CENTER);

最佳答案

您无法直接设置任何单元格的对齐方式。每个单元格都包含一个段落,并且它们包含运行。所以你还需要设置它们的对齐方式。我通过以下方法实现了同样的问题。希望它也能解决你的问题。竖起大拇指:)

private static void setHeaderRowforSingleCell(XWPFTableCell cell, String text) {
XWPFParagraph tempParagraph = cell.getParagraphs().get(0);
tempParagraph.setIndentationLeft(100);
tempParagraph.setIndentationRight(100);
tempParagraph.setAlignment(ParagraphAlignment.CENTER);
XWPFRun tempRun = tempParagraph.createRun();
tempRun.setFontSize(10);
tempRun.setColor("FFFFFF");
tempRun.setText(text);
cell.setVerticalAlignment(XWPFVertAlign.CENTER);
}

关于apache-poi - 如何在poi word中设置单元格setVerticalAlignment?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43268627/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com