0

我必须将 odt 文件转换为 pdf 文件。为此,我正在使用 XdocReport。

我的代码是这样的:

public static void convertOdtToPdf(String inputFilename , String outputFilename) throws Exception{


        InputStream in= new FileInputStream(new File(inputFilename));
        OdfTextDocument document = OdfTextDocument.loadDocument(in);


        PdfOptions options = PdfOptions.create();

        OutputStream out = new FileOutputStream(new File(outputFilename));
        PdfConverter.getInstance().convert(document, out, options);
    }

但是在运行这个之后,我收到了类似的错误

 java.lang.VerifyError: (class: org/odftoolkit/odfdom/pkg/OdfPackage, method: getDom signature: (Ljava/lang/String;)Lorg/w3c/dom/Document;) Incompatible object argument for function call
    2013-09-12 11:47:06,767 ERROR [STDERR] (WorkManager(2)-68)  at org.odftoolkit.odfdom.doc.OdfDocument.loadDocument(OdfDocument.java:219)

我已经添加了所有的罐子。但没有得到任何结果。

4

1 回答 1

0

可能是 ODFDOM 版本的问题。我建议您仅使用 odt.converters-*-sample.zip 提供的 JAR 来尝试您的代码,您可以从https://code.google.com/p/xdocreport/downloads/list下载

于 2013-09-12T23:26:06.400 回答