使用JavaFX查看PDF文件

时间:2018-05-11 22:33:17

标签: java javafx

我希望在我的JavaFX项目中使用HostServices hostServices查看PDF文件。

在应用程序中,我想在单击按钮时显示PDF,但是当我单击按钮时总是会出现NullPointerException。我该如何解决这个问题?

这是我的代码:

private void showPdf(){
    File file = new File("/home/ousainou/Documents/Biometric/Report.pdf");
    HostServices hostServices = getHostServices();
    hostServices.showDocument(file.getAbsolutePath());                
}

0 个答案:

没有答案