使用docx4j+docx4j-ImportXHTML实现将html转成word

使用docx4j+docx4j-ImportXHTML实现将html转成word

1.依赖

复制代码
        <!--docx4j + docx4j-ImportXHTML实现html转word -->
        <dependency>
            <groupId>org.docx4j</groupId>
            <artifactId>docx4j</artifactId>
            <version>6.1.2</version>
            <exclusions>
                <exclusion>
                    <groupId>org.slf4j</groupId>
                    <artifactId>slf4j-reload4j</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.docx4j</groupId>
            <artifactId>docx4j-ImportXHTML</artifactId>
            <version>8.3.11</version>
        </dependency>
        <dependency>
            <groupId>org.glassfish.jaxb</groupId>
            <artifactId>jaxb-runtime</artifactId>
            <version>2.3.1</version>
        </dependency>

2.测试代码

前置条件:

复制代码
String htmlContent = pdfService.generateHtmlContent();

这个是得到填充后的模板的内容!!!

复制代码
import com.example.pdfhtml.util.PdfService;
import org.docx4j.openpackaging.packages.WordprocessingMLPackage;
import org.docx4j.openpackaging.parts.WordprocessingML.MainDocumentPart;
import org.docx4j.convert.in.xhtml.XHTMLImporterImpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

import java.io.ByteArrayOutputStream;

@RestController
public class HtmlToWordController {
    @Autowired
    private PdfService pdfService;

    @GetMapping("/html-to-word")
    public ResponseEntity<byte[]> convertHtmlToWord() {
        try {
            // 创建 WordprocessingMLPackage 实例
            WordprocessingMLPackage wordPackage = WordprocessingMLPackage.createPackage();
            MainDocumentPart mainDocumentPart = wordPackage.getMainDocumentPart();
            String htmlContent = pdfService.generateHtmlContent();
            // 使用 XHTMLImporterImpl 将 HTML 导入到 Word 文档中
            XHTMLImporterImpl xhtmlImporter = new XHTMLImporterImpl(wordPackage);
            mainDocumentPart.getContent().addAll(xhtmlImporter.convert(htmlContent, null));

            // 将 Word 文档写入 ByteArrayOutputStream
            ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
            wordPackage.save(outputStream);

            // 设置响应头,指定文件名和内容类型
            HttpHeaders headers = new HttpHeaders();
            headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
            headers.setContentDispositionFormData("attachment", "document.docx");
            return new ResponseEntity<>(outputStream.toByteArray(), headers, HttpStatus.OK);
        } catch (Exception e) {
            e.printStackTrace();
            return new ResponseEntity<>(HttpStatus.INTERNAL_SERVER_ERROR);
        }
    }
}
相关推荐
inxunoffice3 小时前
批量将文本文件转换为 Word/PDF/Excel/图片等其它格式
pdf·word·excel
专注VB编程开发20年9 小时前
Aspose.words,Aspose.cells,vb.net,c#加载许可证,生成操作选择:嵌入的资源
c#·word·.net·vb.net
专注VB编程开发20年10 小时前
无需安装Office进行 Word、Excel操作的微软开发库
microsoft·word·excel
Ljugg1 天前
把doi直接插入word中,然后直接生成参考文献
开发语言·c#·word
2501_907136821 天前
OfficeAI构建本地办公生态:WPS/Word双端联动,数据自由流转
人工智能·word·wps
快乐点吧1 天前
【Word】批注一键导出:VBA 宏
开发语言·c#·word
seasonsyy2 天前
怎么把wps中的word的批注全部删掉
word·wps
开开心心就好2 天前
便携免安装,畅享近 30 种 PDF 文档处理功能
java·服务器·python·eclipse·pdf·word·excel
流形填表2 天前
一键实现:谷歌表单转word(formtoword)
word
Eiceblue4 天前
Python 在Word中查找并替换文本
vscode·python·word·pip