我正在寻找将docx
文件转换为pdf
Java 的最佳方法,这是我尝试过的:
File wordFile = new File("wordFile.docx"), target = new File("target.pdf");
IConverter converter;
Future<Boolean> conversion = converter.convert(wordFile)
.as(DocumentType.MS_WORD)
.to(target)
.as(DocumentType.PDF)
.prioritizeWith(1000) // optional
.schedule();
问题是我在我的程序中找不到 IConverter 类...