0

Did you ever get the library from this post? We have a need to convert whole, large, whole tables worth of RTF information into something usable and would rather not reinvent if possible.

Converting RTF in a text column to plain text in bulk

Scott
  • 11

1 Answers1

1

Probably can't/don't want to do this in the database.

You can use Apache Tika to convert RTF to plain text: http://tika.apache.org/1.4/formats.html#Rich_Text_Format

Tika internally uses javax.swing.text.rtf for this.

Neil McGuigan
  • 8,653
  • 5
  • 42
  • 57