gpt4 book ai didi

ms-word - 如何使用 Java 从模板或现有文档创建 Word 文档?

转载 作者:行者123 更新时间:2023-12-02 22:14:34 24 4
gpt4 key购买 nike

我有一个文档模板,其中一些字段是静态的,而另一些是动态的。我需要替换一些数据(姓名、姓氏、薪水)并生成新文件。你推荐哪个图书馆来做这个?兴趣点合适吗?我正在使用 Spring、Java EE6 和 Oracle。

最佳答案

您可以尝试使用 Apache POI,但是操作 word 文件所需的 POI 的 HWPF 和 XWPF 部分使用起来真的很复杂 - 您至少需要很好地理解 word 文件的结构!

使用 iText 和 PDF 的解决方案

我对 PDF 做了类似的事情(这可能是你的一个选择)

1) 您可以使用 LibreOffice 在文档中创建字段(就像在 Acrobat Pro 中一样)

  • 创建一个 .odt 文件并设置样式
  • 或使用 MS Word 或 LibreOffice Writer 将您的模板转换为它
  • 然后转到“查看”->“工具栏”->“表单设计”并设置“设计模式开/关”
  • 现在您可以向文件中添加字段(双击它会打开字段的属性)
  • 完成后:“文件 -> 导出为 PDF”

2) 现在你可以使用iText来填写创建的字段

以下只是示例代码:

    public byte[] getDocumentAsByteArray(Object dataBean, String pdfTemplateName) throws KkmsException {

ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
PdfStamper stamp = null;
InputStream templateInputStream = null;

Locale local = new Locale(language);

try {
templateInputStream = // get the file input stream of the pdf
PdfReader reader = new PdfReader(templateInputStream);

// Create a stamper that will copy the document to a new file
stamp = new PdfStamper(reader, outputStream);

AcroFields form = stamp.getAcroFields();

// form fields are normal text in the end
stamp.setFormFlattening(true);
Map<String, AcroFields.Item> map = (Map<String, AcroFields.Item>)form.getFields();
if (map != null) {
if (map.size() == 0) {
logger.debug("There are no fields in this PDF layout");
}
for (Entry<String, AcroFields.Item> e : map.entrySet()) {
logger.debug("PDF fieldname = " + e.getKey());

// at the moment we only handle text fields
if (AcroFields.FIELD_TYPE_TEXT == form.getFieldType(e.getKey())) {
fillForm(dataBean, form, e.getKey(), local);
} else {
logger.warn("Field type is not supported: "+form.getFieldType(e.getKey()));
}
}
}

stamp.close();
} catch (Exception e) {
logger.warn("Failed to create PDF document", e);
throw new KkmsException("Failed to create PDF document: "+e.getMessage());
} finally {
if (templateInputStream != null) {
try {
templateInputStream.close();
} catch (IOException e) {
throw new KkmsException("Failed to close InputStream of PDF document", e);
}
}
}
return outputStream.toByteArray();
}

最后您会得到一个 PDF -> 希望这至少能对您有所帮助!

另一种快速而肮脏的解决方案

可能是使用 odt 或 docx 的强大功能 -> 将您的文档转换为 docx 或 odt -> 它只是一个 zip 文件 -> 所以解压缩它 -> 你会在 zip 的根目录中看到一个 content.xml 文件-> 里面有所有文档内容现在您可以在此处添加一些魔术标签(例如 $$$),稍后可以由您的程序替换

<text:p text:style-name="P3">SAP Customer Number:</text:p>

<text:p text:style-name="P3">SAP Customer Number: $$$sapCustomerNumber$$$</text:p>

现在创建一个解压 odt/docx 文件的程序 -> 替换标签 -> 再次压缩文件

关于ms-word - 如何使用 Java 从模板或现有文档创建 Word 文档?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14715552/

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