Java 中用于比较两个 RTF 文件的开源 API
我找到了Aspose、iTextRTF资源。 Aspose 不是开源的。 iTextRTF 找不到包含 RtfWriter2 的 jar..? jRTF资源是否比较RTF文件..? 非常感谢您的帮助。提前致谢。
I found Aspose,iTextRTF resources.
Aspose is not open source.
iTextRTF cant find jar containing RtfWriter2..?
Does jRTF resource compare RTF files..?
Your Help is highly appreciated.Thanx in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,没有免费的库支持这一点。但自己创建一个基本的比较函数可能并不难。您可以读取 rtf 文件,然后像这样提取文本:
使用第二个编辑器套件中的
text/plain
仅提取文本(不带格式)和text/html
提取保留(大部分)格式的文本。编辑器工具包将忽略任何图像,因此您不必担心这一点。对这两个文件执行此操作,然后简单地比较这两个文件生成的 html 或文本。
As far as I know there is no free library that supports this. But it may not be that hard to create a basic compare function yourself. You can read in an rtf file and then extract the text like this:
Use
text/plain
in the 2nd editor kit to extract text only (without formatting) andtext/html
to extract text preserving (most of) the formatting. The editor kit will ignore any images, so you do not have to worry about that.Do this for the two files and then simply compare the resulting html or text of the two files.