1

Java アプリケーション内で PDF ドキュメントを表示および印刷するために ICEPDF を使用しています。

次の例外が発生します。

org.icepdf.core.pobjects.Catalog <clinit>
INFO: ICEsoft ICEpdf Core 4.1.4 
Exception in thread "Thread-4" java.lang.ArrayIndexOutOfBoundsException: 0
    at org.icepdf.ri.common.PrintHelper.getSetupDialog(PrintHelper.java:526)
    at org.icepdf.ri.common.PrintHelper.setupPrintService(PrintHelper.java:199)
    at org.icepdf.ri.common.SwingController.initialisePrinting(SwingController.java:2590)
    at org.icepdf.ri.common.SwingController.access$400(SwingController.java:102)
    at org.icepdf.ri.common.SwingController$3.run(SwingController.java:2548)
    at java.lang.Thread.run(Thread.java:680)

私が使用しているコードは次のとおりです。

public class ViewerComponentExample {
    public static void main(String[] args) {
        // Get a file from the command line to open
        String filePath = "boll.pdf";

        // 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);
    }
}

上記はビューアーが正常であることを示しており、印刷以外のすべての操作が可能です! (上記の例外を参照)。

どんな助けでも大歓迎です。

ありがとう

4

1 に答える 1

1

残念ながら、この例外は、OSで使用可能なプリンタがない場合に表示されます。icepdfのソースコードは次のとおりです。

return ServiceUI.printDialog(graphicsConfiguration,
    point.x,
    point.y,
    services, services[0],
    DocFlavor.SERVICE_FORMATTED.PRINTABLE,
    printRequestAttributeSet);

「サービス」は次のように定義されます。

private PrintService[] lookForPrintServices() {
    PrintService[] services = PrintServiceLookup.lookupPrintServices(
        DocFlavor.SERVICE_FORMATTED.PRINTABLE, null);
    PrintService defaultService = PrintServiceLookup.lookupDefaultPrintService();
    if (defaultService != null && services.length &gt; 1) {
        PrintService printService;
        for (int i = 1, max = services.length; i &lt; max; i++) {
            printService = services[i];
            if (printService.equals(defaultService)) {
                PrintService tmp = services[0];
                services[0] = defaultService;
                services[i] = tmp;
                break;
            }
        }
    }
    return services;
}

一致するサービスがない場合、「services」配列の長さはゼロです。http: //docs.oracle.com/javase/6/docs/api/javax/print/PrintServiceLookup.html#lookupPrintServices (javax.print.DocFlavor、javax .print.attribute.AttributeSet)

おそらく解決策は、「/ dev/null」プリンターを作成することです。これが簡単かどうかはわかりません...

于 2012-03-09T15:37:14.117 に答える