将 XML 数据转换为 DOC 并将其另存为 TIFF
XML-DOC-TIFF
我正在开发一个 POC,需要将 XML 数据转换为可编辑的 Word 文档 并在 word doc 上提供一个“另存为 tiff”按钮,将其另存为 TIFF 图像。 我们可以使用java来实现这一点吗?我已经没有主意了。
-PD
XML-DOC-TIFF
I am working on a POC where I need to convert XML data to a editable word document
and provide a button "save as tiff" on the word doc which saves as a TIFF image.
Can we achieve this using java ? I am running out of ideas.
-PD
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下 XWPF 和 HWPF (http://poi.apache.org/hwpf/index.html),它们提供了用于读取和写入 .docx 文件的 Java API。使用它,您应该能够将 XML 数据映射到 docx 文件中。
Microsoft Word 具有内置的 TIFF 打印功能。打印时,选择 Microsoft Office Document Image Writer 打印机,单击“属性”->“高级”,然后选择 TIFF。
或者您是否正在尝试构建 Microsoft Word 的 Java 版本?
Take a look at XWPF and HWPF (http://poi.apache.org/hwpf/index.html), which provide Java APIs for reading and writing .docx files. Using this you should be able to map your XML data into a docx file.
Microsoft Word has a built in TIFF print capability. When you print, choose the Microsoft Office Document Image Writer printer, click on Properties->Advanced, then select TIFF.
Or were you trying to build a Java version of Microsoft Word?