如何在java中使用 apache Tika 将 .doc 或 .docx 文件转换为 .pdf 文件?
答案 0 :(得分:2)
使用Tika的任何具体要求。您可以使用Apache POI&专门用于文档转换的itext API或document4j API。
document4j示例::
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();