生成pdf文件时出现问题

发布于 2024-12-06 15:53:29 字数 691 浏览 0 评论 0原文

我正在尝试使用 Flying Saucer 从 xhtml 生成 pdf 文件,你知道为什么这段代码总是抛出异常吗?

import org.xhtmlrenderer.pdf.ITextRenderer
import com.lowagie.text.DocumentException
private void testconfiguration(String taskId) throws IOException, DocumentException {
      String inputFile = "/home/marcin/firstdoc.xhtml";
      String url = new File(inputFile).toURI().toURL().toString();
      String outputFile = "/home/marcin/firstdoc.pdf";
      OutputStream os = new FileOutputStream(outputFile);
      ITextRenderer renderer = new ITextRenderer();
      renderer.setDocument(url);
      renderer.layout();
      renderer.createPDF(os); // this line generates Exception
      os.close();
}

I'm trying to generate pdf file from xhtml using Flying Saucer do you have any idea why this code always throwx exception?

import org.xhtmlrenderer.pdf.ITextRenderer
import com.lowagie.text.DocumentException
private void testconfiguration(String taskId) throws IOException, DocumentException {
      String inputFile = "/home/marcin/firstdoc.xhtml";
      String url = new File(inputFile).toURI().toURL().toString();
      String outputFile = "/home/marcin/firstdoc.pdf";
      OutputStream os = new FileOutputStream(outputFile);
      ITextRenderer renderer = new ITextRenderer();
      renderer.setDocument(url);
      renderer.layout();
      renderer.createPDF(os); // this line generates Exception
      os.close();
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

九局 2024-12-13 15:53:29

您的类路径中可能有两个不兼容版本的库(即 xhtmlrenderer 库可能需要一个不是您正在使用的版本的 lowagie 库)。

You probably have two incompatible versions of libraries in your classpath (i.e. the xhtmlrenderer library probably expects a version of the lowagie library that is not the one you're using).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文