kerZy Hart
kerZy Hart

Reputation: 191

is there any way to read rtf file using java other than RTFEditorKit?

I am trying to read RTF file using Java and I have found Swing's RTFEditorkit.is there any other jar files available to read rtf files. Am not satisfied with this answer.

Upvotes: 3

Views: 1792

Answers (2)

StanislavL
StanislavL

Reputation: 57421

You can try the kit as alternative for default one. It supports images and text as well.

Upvotes: 1

ooxi
ooxi

Reputation: 3349

What kind of information do you want to extract? RTF is a really simple format, you should be able to get most information without using a real parser but regular expressions.

Upvotes: 2

Related Questions