我有 Java 代码可以在 Java 中打开 pdf 文件,它运行良好。
代码是
try {
File pdfFile = new File("/Users/alkandari/Desktop/SMART/Fahim/test.pdf");
if (pdfFile.exists()) {
if (Desktop.isDesktopSupported()) {
Desktop.getDesktop().open(pdfFile);
} else {
System.out.println("Awt Desktop is not supported!");
}
} else {
System.out.println("File is not exists!");
}
System.out.println("Done");
} catch (Exception ex) {
ex.printStackTrace();
}
但是,当我将它放在某种方法中showMyPDFFile()
并尝试调用它时commandLink
,pdf 不会打开。它说Awt Desktop is not supported!
。
<h:commandLink value="View PDF/ DOC"
action="#{PersonalInformationDataBean.showMyPDFFile()}" />
知道为什么 pdf 没有被打开吗?