The world's only RFC compliant RTF to HTML parser.
rtf-to-html is available in Maven Central:
<dependency>
<groupId>com.github.bbottema</groupId>
<artifactId>rtf-to-html</artifactId>
<version>1.1.1</version>
</dependency>
There are three versions of RTF to HTML for you to discover:
- RTF2HTMLConverterJEditorPane: A converter that invokes Swing's native RTF support
- RTF2HTMLConverterClassic: The orignal custom (regex-based) built converter with reasonable results
- RTF2HTMLConverterJEditorPane: The improved RFC-compliant parser with the most correct outcome
RTF2HTMLConverter converter = RTF2HTMLConverterJEditorPane.INSTANCE;
RTF2HTMLConverter converter = RTF2HTMLConverterClassic.INSTANCE;
RTF2HTMLConverter converter = RTF2HTMLConverterRFCCompliant.INSTANCE;
String html = converter.rtf2html("RTF text");
v1.1.0 - v1.1.1
- 08-June-2024: #14: Bullet numbers in list items have double numbers
- 25-May-2024: #13: Charset should be determined based on the RTF's ansicpg control word
v1.0.1 (22-October-2019)
- #1: Missing support for UTF-8's legacy name (cp)65001
v1.0.0 (12-October-2019)
- Initial release, moved from outlook-message-parser