如何使用 Perl 编写 Microsoft Word/Office Open XML 文档?
我编写了一个 Perl 脚本,用于读取一些数据并为该数据生成 OpenOffice Writer/OpenDocument 文件。我还可以构建 Microsoft Word/Office Open XML 文档吗?
I have written a Perl script that reads some data and generates an OpenOffice Writer/OpenDocument file for that data. Can I also construct a Microsoft Word/Office Open XML document?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要阅读 MS Word 文档,您可以使用 Open XML SDK 2.0 for Microsoft Office
您可能必须编写一个包装器才能将其与 Perl 脚本一起使用。
To read MS Word documents you can use Open XML SDK 2.0 for Microsoft Office
You may have to write a wrapper in order to use it with your Perl script.
OpenOffice(或 LibreOffice)有一个名为 unoconv 的实用程序,可用于在格式之间进行转换。我相信它相当于在 OpenOffice 中打开输入文档,然后将其另存为输出格式。您说您的脚本已经生成了 opendocument 格式,因此您可以尝试使用 unoconv 从中生成 Word 文档。
OpenOffice (or LibreOffice) has a utility called unoconv that can be used to convert between formats. I believe it does the equivalent of opening the input document in OpenOffice and then saving it as the output format. You say you script already produces opendocument format, so you can try using unoconv to produce a Word document from that.