1

我正在使用 icepdf 在我的 Swing 应用程序中显示 pdf。我有用于 pdf 导航的外部按钮。我需要浏览这么多 pdf,但在同一个面板内而不关闭。

我的 Icepdf 代码:

public static void pdfviewerICE(currentpdfurl) {
    filePath = currentpdfurl;

    // build a controller
    SwingController controller = new SwingController();

    // Build a SwingViewFactory configured with the controller
    SwingViewBuilder factory = new SwingViewBuilder(controller);
    PropertiesManager properties = new PropertiesManager(
        System.getProperties(),
        ResourceBundle.getBundle(PropertiesManager.DEFAULT_MESSAGE_BUNDLE));

    properties.set(PropertiesManager.PROPERTY_DEFAULT_ZOOM_LEVEL, "1.75");

    JSplitPane jSplitPane_PDF = factory.buildUtilityAndDocumentSplitPane(true);
    controller.openDocument(filePath);
    if ((internalFrame.getComponents()!= null) || (internalFrame.isClosed())) {
         internalFrame.add(jSplitPane_PDF);
    internalFrame.show();
   }
}

这是每次加载相同的pdf。

4

1 回答 1

2

普拉萨特巴拉,

您必须将“控制器”设为公开。然后在您更改 pdf 页面时调用您的控制器

代码:controller.openDocument(currentpdfurl);

我也有同样的问题,这肯定会解决你的问题。

于 2015-03-30T12:33:12.860 回答