我已将 pdf-renderer-1.0.5.jar 作为外部 JAR 添加到我的 java GWT 项目中。访问“PDFFile pdfFile = new PDFFile (buf);”时 在以下代码中,我得到 java.lang.NoClassDefFoundError: com/sun/pdfview/PDFFile运行时异常。
private static PDFFile getPdfFile(String filepath) throws Exception{
RandomAccessFile raf = new RandomAccessFile(new File(filepath), "r");
FileChannel fc = raf.getChannel ();
ByteBuffer buf = fc.map(FileChannel.MapMode.READ_ONLY, 0, fc.size ());
PDFFile pdffile1 = new PDFFile(null);
PDFFile pdfFile = new PDFFile (buf);
return pdfFile;
}
这是什么原因?我不确定我做错了什么。
(我正在尝试从以下位置运行示例: https ://github.com/paulhfch/PdfViewer )
谢谢