java.io.IOException:文档没有页面。 - PowerPoint到PDF

时间:2016-08-24 00:25:25

标签: java pdf javafx converter powerpoint

我正在制作一个将PowerPoint转换为PDF的JavaFX应用程序。但是我得到了这个错误:

UpdateError

我尝试了很多ppt文件,但它没有做任何事情。对于所有文件,我收到此错误。我不知道是什么问题。

ExceptionConverter: java.io.IOException: The document has no pages

1 个答案:

答案 0 :(得分:1)

例外是因为实际转换没有发生且文档是空的。

当您使用以下命令获得扩展时,它将返回没有"。"即(ppt或pptx)

String fileType=FilenameUtils.getExtension(destination);

因此您需要更改if条件,如下所示

fileType.equalsIgnoreCase("ppt")

fileType.equalsIgnoreCase("pptx")