打开 PDF 文件 @param filePath 文件路径 @return true success, false fail
(final String filePath)
| 2071 | * @return {@code true} success, {@code false} fail |
| 2072 | */ |
| 2073 | public static boolean openPDFFile(final String filePath) { |
| 2074 | return openPDFFile(FileUtils.getFileByPath(filePath)); |
| 2075 | } |
| 2076 | |
| 2077 | /** |
| 2078 | * 打开 PDF 文件 |
nothing calls this directly
no test coverage detected