I have to develop an appplication which uploads rtf,word,excel file and i need to convert all formats to pdf. can anyone help me in how i can write the code using JAVA.IT is very urgent
I have seen jakarta poi (which does the excel java api) and then apache fop or itext library for the pdf creation.
is there any direct library which converts pdf ??
Regards,
Madhu Kaparapu.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35223
7
posted
0
I'm not aware of a ready-made solution for any of these formats. POI can read XLS, but it's up to the developer to create PDF from that. POI also can read Word documents, but that's reported to be buggy and unsupported, so it may or may not work with the files you have. For RTF, you could write a reader based on the JavaCC parser (which comes with an RTF grammer). All of these would require significant amounts of work.