如何使用XWPFTable中的Apache POI将文本旋转到90度?
答案 0 :(得分:4)
直到现在,文本方向设置才会在XWPFTableCell
中实现。但是使用getCTTc我们可以获得底层CTTc对象。我们可以设置addNewTcPr(),addNewTextDirection()。
对于使用org.openxmlformats.schemas.spreadsheetml.x2006.main.CTTextDirection
,此示例需要FAQ-N10025中提到的所有模式ooxml-schemas-1.3.jar
的完整jar。
示例:
import java.io.File;
import java.io.FileOutputStream;
import org.apache.poi.xwpf.usermodel.XWPFDocument;
import org.apache.poi.xwpf.usermodel.XWPFTable;
import org.apache.poi.xwpf.usermodel.XWPFTableCell;
import org.apache.poi.xwpf.usermodel.XWPFParagraph;
import org.apache.poi.xwpf.usermodel.XWPFRun;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.STTextDirection;
public class CreateWordTableTextVertical {
public static void main(String[] args) throws Exception {
XWPFDocument document = new XWPFDocument();
XWPFParagraph paragraph = document.createParagraph();
XWPFRun run = paragraph.createRun();
run.setText("The table:");
XWPFTable table = document.createTable(1,3);
for (int r = 0; r < 1; r++) {
for (int c = 0 ; c < 3; c++) {
XWPFTableCell tableCell = table.getRow(r).getCell(c);
tableCell.getCTTc().addNewTcPr().addNewTextDirection().setVal(STTextDirection.BT_LR);
paragraph = tableCell.getParagraphArray(0);
run = paragraph.createRun();
run.setText("text");
}
}
paragraph = document.createParagraph();
document.write(new FileOutputStream("CreateWordTableTextVertical.docx"));
document.close();
}
}
答案 1 :(得分:0)
您可以使用此方法设置apache poi liberary的各种ENUM关系。 STJc.Enum支持各种对齐。
public void setTableAlignment(XWPFTable table, STJc.Enum justification) {
CTTblPr tblPr = table.getCTTbl().getTblPr();
CTJc jc = (tblPr.isSetJc() ? tblPr.getJc() : tblPr.addNewJc());
jc.setVal(justification);
}