Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
XML-DOC-TIFF
我正在开发一个 POC,我需要将 XML 数据转换为可编辑的 word 文档,并在 word doc 上提供一个“另存为 tiff”按钮,该按钮另存为 TIFF 图像。我们可以使用 java 实现这一点吗?我的想法不多了。
-PD
看看 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 版本?