gpt4 book ai didi

java - itext7 的 PdfReader 无法在 java 中运行

转载 作者:太空宇宙 更新时间:2023-11-04 09:42:38 26 4
gpt4 key购买 nike

这是我的代码

import com.itextpdf.kernel.pdf.PdfReader;
...
...
try{
PdfReader reader = new PdfReader("C:/Users/Warrior/Documents/1.pdf");
}catch(IOException e){
e.printStackTree();
}

我在 eclipse 中导入 pdfxfa-2.0.1.jar 文件。但不要在new PdfReader中继续。并且它没有被catch子句捕获并且不打印错误。请帮我。谢谢。

最佳答案

您应该尝试添加另一个更一般的异常以查看是否存在错误,即

try{
PdfReader reader = new PdfReader("..."); // The path to your pdf document
// What do you want to achieve with the PdfReader instance here?
// Do some action with your reader. You don't need to assign without using it
// to see what is happening.
} catch(IOException e){
e.printStackTrace();
} catch(Exception ex) {
ex.printStackTrace();
}

如果异常仍然没有抛出,并且被Exception捕获,那么你可以责怪PdfReader

如果不展示如何调用 reader 的方法,您就无法真正判断问题出在哪里。仅仅分配阅读器并不意味着 PdfReader 仅仅因为没有抛出错误而无法工作。

关于java - itext7 的 PdfReader 无法在 java 中运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55788762/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com