gpt4 book ai didi

java - 如何使用 Apache POI 为 docx 文件中的段落设置标题样式?

转载 作者:行者123 更新时间:2023-11-29 03:12:24 25 4
gpt4 key购买 nike

<分区>

我正在尝试使用 poi 创建一个 docx 文件,但我无法为段落设置标题样式。

    XWPFDocument document= new XWPFDocument(); 

//Write the Document in file system
FileOutputStream out = new FileOutputStream(new File("C:/Users/2/Desktop/RequirementModelDocument.docx"));

XWPFParagraph paragraph = document.createParagraph();
XWPFRun run=paragraph.createRun();


paragraph.setAlignment(ParagraphAlignment.LEFT);
paragraph.setStyle("Heading1");

run.setText(reqLevel.getName());
run.setBold(true);
run.setFontFamily("Calibri Light (Headings)");

它就像忽略 paragraph.setStyle("Heading1"); 行。我查看了 apache 的示例,但看不到有关此问题的任何示例。

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