我希望在我的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());
}