El codigo que utilizo para visualizar es el siguiente:
Código:
String file = "src/systemgq/numeracionPDF/prueba.pdf"; RandomAccessFile raf = new RandomAccessFile(file, "r"); FileChannel channel = raf.getChannel(); ByteBuffer buf = channel.map(FileChannel.MapMode.READ_ONLY,0 ,channel.size()); PDFFile pdfFile = new PDFFile(buf); PDFPage page = pdfFile.getPage(0); mN.getPagePanel().showPage(page);