在Java中合并两个RTF文件
我有两个或多个 StringWriter 形式的 rtf 文件。如何合并它们以使 RTF 标头不加倍?
I have two or more rtf files in the form of StringWriter. How can I merge them so that the RTF headers are not doubled?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 iTextRTF 库。沿着这些思路:
或者
Use iTextRTF library. Something along these lines:
or
如果您不想使用第 3 方库,这里有一个替代答案,它从两个不同的 RTF 文件中读取并将它们连接成一个:
如何将 2 个 RTF 连接成一个
它具有可供您使用的完整工作代码。
If you do not want to use 3rd party libraries, here is an alternative answer that reads from two different RTF files and concatenates them into one:
How to concatenate 2 RTFs into one
It has fully working code that you could use.