Java 中用于比较两个 RTF 文件的开源 API

发布于 2024-12-24 02:09:26 字数 112 浏览 0 评论 0原文

我找到了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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

零度° 2024-12-31 02:09:26

据我所知,没有免费的库支持这一点。但自己创建一个基本的比较函数可能并不难。您可以读取 rtf 文件,然后像这样提取文本:

// read rtf from file
JEditorPane p = new JEditorPane();
p.setContentType("text/rtf");
EditorKit rtfKit = p.getEditorKitForContentType("text/rtf");
rtfKit.read(new FileReader(fileName), p.getDocument(), 0);
rtfKit = null;

// convert to text
EditorKit txtKit = p.getEditorKitForContentType("text/plain");
Writer writer = new StringWriter();
txtKit.write(writer, p.getDocument(), 0, p.getDocument().getLength());
String documentText = writer.toString();

使用第二个编辑器套件中的 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:

// read rtf from file
JEditorPane p = new JEditorPane();
p.setContentType("text/rtf");
EditorKit rtfKit = p.getEditorKitForContentType("text/rtf");
rtfKit.read(new FileReader(fileName), p.getDocument(), 0);
rtfKit = null;

// convert to text
EditorKit txtKit = p.getEditorKitForContentType("text/plain");
Writer writer = new StringWriter();
txtKit.write(writer, p.getDocument(), 0, p.getDocument().getLength());
String documentText = writer.toString();

Use text/plain in the 2nd editor kit to extract text only (without formatting) and text/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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文