跨平台开源 Doc 到 RTF 转换器
我需要一个 doc 到 rtf 转换器,它将从命令行和 Perl 脚本中运行(我知道我需要使用 system() 来运行转换器)。 有什么建议。 可以静态链接编译以便可以作为独立二进制文件在工作站上运行的东西会更有用。
我想保留标题、有序列表和项目符号列表和表格等内容。 其他一切都不重要。
I need a doc to rtf converter that will run from the command line, and from within a Perl script (I know I'll need to use system() to run the converter). Any recommendations. Something that can be compiled statically linked so it can run on workstations as standalone binaries would be even more useful.
I want to preserve things like headings, ordered and bulleted lists and tables. Everything else is unimportant.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我还没有将其用于 .DOC 到 .RTF,但是 Apache POI 可能是一个不错的选择。
I've not used it for .DOC to .RTF, but Apache POI is probably a pretty good bet.
如果您可以从 doc 转到 docx,那么您可以使用 docx4j 使用 iText 或 FOP 生成 RTF(我还没有测试 iText 或 FOP 的 RTF 输出,所以我不确定它们如何处理表格)。
至于从 doc 到 docx,docx4j 使用 poi 的 hwpf 对此进行了基本的概念证明。
If you can go from doc to docx, then you could use docx4j to generate RTF using iText or FOP (I haven't tested the RTF output of either iText or FOP, so I'm not sure how they'll handle tables).
As to going from doc to docx, docx4j has a basic proof of concept of this, using poi's hwpf.