How to convert .doc or .docx file to .pdf file?

1.9k Views Asked by At

How to convert .doc or .docx file to .pdf file using apache Tika in java ?

1

There are 1 best solutions below

3
On

any specific requirment to use Tika. You can use Apache POI & itext API or document4j API that specially for doc conversion .

document4j Example ::

File wordFile = new File( ... ), target = new File( ... );
IConverter converter = ... ;
Future<Boolean> conversion = converter
                                 .convert(wordFile).as(DocumentType.MS_WORD)
                                .to(target).as(DocumentType.PDF)
                                .prioritizeWith(1000) // optional
                                .schedule();