java 读取pdf写成流报错PDF contains an encryption dictionary, please remove it with setAllSecurityToBeRemoved() or set a protection policy with protect()如何解决,如果需要引入依赖,需要哪些依赖
问题原因是PDF文件被加密了,需要使用PDFBox的相关方法来处理加密。
解决方法
<dependency>
<groupId>org.apache.pdfbox</groupId>
<artifactId>pdfbox</artifactId>
<version>2.0.27</version>
</dependency>
<dependency>
<groupId>org.apache.pdfbox</groupId>
<artifactId>pdfbox-tools</artifactId>
<version>2.0.27</version>
</dependency>
在读取PDF文件之前,使用setAllSecurityToBeRemoved(true)
方法来移除PDF的加密。示例代码如下:
import org.apache.pdfbox.pdmodel.PDDocument;
public class PDFReader {
public static void main(String[] args) {
try {
// 加载PDF文件
PDDocument document = PDDocument.load(new File("path/to/your/pdf/file.pdf"));
// 移除加密
document.setAllSecurityToBeRemoved(true);
// 处理PDF文件的其他逻辑
// 关闭文档
document.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
标签:setAllSecurityToBeRemoved,set,读取,依赖,报错,pdf,PDF,pdfbox
From: https://www.cnblogs.com/lcaiqin/p/18373507