tags:

views:

71

answers:

4

I am looking for a open source library in Java for HTML Microsoft Word conversion. I have found many tools for Word to HTML conversion but not too many for converse.

I am not trying to build the RTF document from scratch. I am trying to convert formatted HTML documents to RTF documents. I was able to find a converter for HTML to PDF(Flying Saucer which uses iText). I haven't found similar tools for RTF

A: 

Look at the iText library - it can export out to RTF, which is a step away from what you want. :)

Bogo Giertler
I am not trying to build the RTF document from scratch. I am trying to convert formatted HTML documents to RTF documents. I was able to find a converter for HTML to PDF(Flying Saucer which uses iText). I haven't found similar tools for RTF.
KandadaBoggu
A: 

Try Apache POI, it's realy cool api for all Microsoft documents.

Frostman
A: 

Look at the iText library - it can export out to RTF, which is a step away from what you want. :)

Anil
A: 

You could try Docmosis or JODReports as well. They load and save files using OpenOffice which has pretty powerful document converters in it. They additionally allow varying levels of report populating and manipulating and they're free.

jowierun