Взгляните на эти бесплатные рендеры pdf ...
Некоторые ссылки ...
http://www.icepdf.org/ (теперь на http://www.icesoft.org/java/projects/ICEpdf/overview.jsf - Apache 2 с открытым исходным кодом)
http://www.jpedal.org/support_siEclipse.php (сейчас на https://www.idrsolutions.com/jpedal/ - коммерческий)
https://java.net/projects/pdf-renderer (еще доступно https://github.com/yarick123/pdf-renderer - LGPL-2.1)
UPDATE
Согласно http://www.icepdf.org/,
ICEpdf является открытым исходным кодом Java PDF
движок, который может рендерить, конвертировать или
извлекать содержимое PDF в любой Java
приложение или на веб-сервере.
Для базовой функциональности вы должны включить icepdf-core.jar
и icepdf-viewer.jar
в ваш путь к классам. В зависимости от требований вы также можете добавить поддержку SVG.
Взято из папки с образцом iceface:
import org.icepdf.ri.common.SwingController;
import org.icepdf.ri.common.SwingViewBuilder;
import javax.swing.*;
/**
* The <code>ViewerComponentExample</code> class is an example of how to use
* <code>SwingController</code> and <code>SwingViewBuilder</code>
* to build a PDF viewer component. A file specified at the command line is
* opened in a JFrame which contains the viewer component.
*
* @since 2.0
*/
public class ViewerComponentExample {
public static void main(String[] args) {
// Get a file from the command line to open
String filePath = args[0];
// build a component controller
SwingController controller = new SwingController();
SwingViewBuilder factory = new SwingViewBuilder(controller);
JPanel viewerComponentPanel = factory.buildViewerPanel();
// add interactive mouse link annotation support via callback
controller.getDocumentViewController().setAnnotationCallback(
new org.icepdf.ri.common.MyAnnotationCallback(
controller.getDocumentViewController()));
JFrame applicationFrame = new JFrame();
applicationFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
applicationFrame.getContentPane().add(viewerComponentPanel);
// Now that the GUI is all in place, we can try openning a PDF
controller.openDocument(filePath);
// show the component
applicationFrame.pack();
applicationFrame.setVisible(true);
}
}
Приведенный выше код помогает вам отображать PDF на компоненте Swing. Вы можете сделать то же самое в среде SWT (взглянуть на SwingViewBuilder
.. довольно сложно, но будет выглядеть и чувствовать SWT) или использовать org.eclipse.swt.awt.SWT_AWT
(вроде легко ... но будет выглядеть Swing + SWT и чувствую) ... хотя оба подхода решат вашу цель. Также проверьте соответствующие лицензии в папке с лицензиями.
Надеюсь, это поможет.