通过JAVA将模板附加到word文档中
谁能帮我通过Java编码将模板附加到word文档中。
Can anyone help me to attach a template to a word document through Java coding.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
谁能帮我通过Java编码将模板附加到word文档中。
Can anyone help me to attach a template to a word document through Java coding.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
如果您知道如何在 VBA 中执行此操作,则可以使用 Com4J,生成 Word 的 JavaProxies,然后从 Java 调用相同的函数。
If you know how to do this in VBA, you can use Com4J, generate the JavaProxies for Word, and then call the same functions from Java.
使用 docx4j:
请参阅 docx4j svn 中的 org.docx4j.samples.TemplateAttach 以获取完整示例。
with docx4j:
See org.docx4j.samples.TemplateAttach in docx4j svn for the complete example.
尝试 Apache POI,它提供了用于操作 MS Office 文档的跨平台纯 Java 解决方案。
Try Apache POI that provides cross platform pure Java solution for manipulating MS Office documents.