如何在 Docx4j 中将 HTML <h3> </h3> 转换为 MS 文档 Heading3?

How to convert HTML <h3> </h3> to MS document Heading3 in Docx4j?

我一直在从 HTML 内容生成 word 文档。

使用下面的代码。

ordprocessingMLPackage wordMLPackage = WordprocessingMLPackage.createPackage(PageSizePaper.LETTER, false);

XHTMLImporterImpl XHTMLImporter = new XHTMLImporterImpl(wordMLPackage);
XHTMLImporter.setRunFormatting(FormattingOption.CLASS_PLUS_OTHER);
NumberingDefinitionsPart ndp = new NumberingDefinitionsPart();

wordMLPackage.getMainDocumentPart().addTargetPart(ndp);
ndp.unmarshalDefaultNumbering();

wordMLPackage.getMainDocumentPart().getContent().addAll(XHTMLImporter.convert("<h3> SAMPLE HEADING</h3>", null));

File exportFile = new File(somepath/sample.docx);
wordMLPackage.save(exportFile);

上面的代码工作正常并生成文档,但是 HTML <h3> SAMPLE HEADING</h3> 没有转换为 MS word Heading 3 它显示为普通文本在文档中。

稍后,我将使用以下代码使用这些标题生成 Table 的内容 TOC

tocGenerator.generateToc( 1,    "TOC \o \"1-3\" \h \z \u ", false);

不过有些代码不支持普通文本生成目录。

我们需要使用以下代码更改标题设置。

ImportXHTMLProperties.setProperty("docx4j-ImportXHTML.Element.Heading.MapToStyle", true);

此处是满足要求的更新代码。

//  activating Headings property for MS Word Heading Mapping
ImportXHTMLProperties.setProperty("docx4j-ImportXHTML.Element.Heading.MapToStyle", true);
ordprocessingMLPackage wordMLPackage = WordprocessingMLPackage.createPackage(PageSizePaper.LETTER, false);

XHTMLImporterImpl XHTMLImporter = new XHTMLImporterImpl(wordMLPackage);
XHTMLImporter.setRunFormatting(FormattingOption.CLASS_PLUS_OTHER);
NumberingDefinitionsPart ndp = new NumberingDefinitionsPart();

wordMLPackage.getMainDocumentPart().addTargetPart(ndp);
ndp.unmarshalDefaultNumbering();

wordMLPackage.getMainDocumentPart().getContent().addAll(XHTMLImporter.convert("<h3> SAMPLE HEADING</h3>", null));

File exportFile = new File(somepath/sample.docx);
// adding TOC - TABLE OF CONTENTS
TocGenerator tocGenerator = new TocGenerator(wordMLPackage);
tocGenerator.generateToc(0, "TOC \o \"1-3\" \h \z \u ", false);

wordMLPackage.save(exportFile);