我在Web项目中使用icepdf。当我在eclipse中运行此项目时,它运行良好;当在Tomcat 8/9版上使用此项目war时,也可以运行。但是,当我在Linux实例中部署这场战争时,一切正常,但是pdf无法在JFrame中呈现。我的Java版本和tomcat版本也与本地使用的相同。

这是我的代码

import org.icepdf.ri.common.SwingController;
import org.icepdf.ri.common.SwingViewBuilder;
import java.io.InputStream;
import javax.swing.*;
public class PdfPreview {
public static void pdfPreview(InputStream stream) {

    // 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.DISPOSE_ON_CLOSE);
    applicationFrame.getContentPane().add(viewerComponentPanel);

    // Now that the GUI is all in place, we can try openning a PDF
    controller.openDocument(stream, "Pdf Viewer", null);
    // show the component
    applicationFrame.pack();
    applicationFrame.setVisible(true);
}}


这里stream来自来源

最佳答案

基于Swing的查看器旨在作为胖客户端作为独立应用程序运行。您的代码可能在服务器上运行正常,但是GUI将加载在服务器系统上,而不是系统上。当服务器尝试加载Swing子系统时,也可能会出现无头异常。

如果要通过Web服务器启动Viewer应用程序,则需要构建和部署Java WebStart应用程序(JWS)。一个示例在这里http://anonsvn.icesoft.org/repo/icepdf/tags/icepdf-6.3.0/icepdf/examples/jws/。您需要对罐子签名方面进行一些自己的研究。

您还可以使用ICEpdf库将PDF文档的页面另存为图像,然后可以使用Tomcat将图像提供给发出请求的客户端。有一些使用JSF / ICEfaces http://anonsvn.icesoft.org/repo/icepdf/tags/icepdf-6.3.0/icepdf/examples/icefaces/的示例代码。核心捕获是通过此Servlet类http://anonsvn.icesoft.org/repo/icepdf/tags/icepdf-6.3.0/icepdf/examples/icefaces/src/main/java/org/icepdf/examples/jsf/viewer/servlet/PdfRenderer.java完成的

09-10 06:29