本文介紹了使用ApachePDFBox從PDF文件中刪除加密的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
使用QPDF,您可以簡單地從PDF文件中刪除限制/加密,如下所示:
qpdf --decrypt infile outfile
我想用Java中的PDFBox做同樣的事情:
PDDocument doc = PDDocument.load(inputFilename);
if (doc.isEncrypted()) {
// remove the encryption to alter the document
}
我已嘗試使用StandardDecryptionMaterial
,但我不知道所有者密碼是什么。QPDF如何做到這一點?
示例文檔:
https://issues.apache.org/jira/secure/attachment/12514714/in.pdf
推薦答案
這是您需要做的(靈感來自PDFBoxWriteDecodedDoc命令行工具):
if (doc.isEncrypted()) {
try {
doc.decrypt("");
doc.setAllSecurityToBeRemoved(true);
} catch (Exception e) {
throw new Exception("The document is encrypted and we can't decrypt it.", e);
}
}
注意:您可能必須包括Bouncy CastleJAR。
這篇關于使用ApachePDFBox從PDF文件中刪除加密的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,