我想检查 pdf 文件是否受密码保护以查看。那就是我想知道pdf文件是否有用户密码。
我在一些论坛上找到了一些关于它使用isencrypted
功能的帮助,但它没有给出正确的答案。
是否可以检查pdf是否受密码保护?
我想检查 pdf 文件是否受密码保护以查看。那就是我想知道pdf文件是否有用户密码。
我在一些论坛上找到了一些关于它使用isencrypted
功能的帮助,但它没有给出正确的答案。
是否可以检查pdf是否受密码保护?
使用该PdfReader.IsEncrypted
方法的问题在于,如果您尝试PdfReader
在需要密码的 PDF 上实例化 a - 而您没有提供该密码 - 您将获得一个BadPasswordException
.
记住这一点,您可以编写如下方法:
public static bool IsPasswordProtected(string pdfFullname) {
try {
PdfReader pdfReader = new PdfReader(pdfFullname);
return false;
} catch (BadPasswordException) {
return true;
}
}
请注意,如果您提供的密码无效,则BadPasswordException
在尝试构造PdfReader
对象时会得到相同的密码。您可以使用它来创建验证 PDF 密码的方法:
public static bool IsPasswordValid(string pdfFullname, byte[] password) {
try {
PdfReader pdfReader = new PdfReader(pdfFullname, password);
return false;
} catch (BadPasswordException) {
return true;
}
}
当然它很难看,但据我所知,这是检查 PDF 是否受密码保护的唯一方法。希望有人会提出更好的解决方案。
private void CheckPdfProtection(string filePath)
{
try
{
PdfReader reader = new PdfReader(filePath);
if (!reader.IsEncrypted()) return;
if (!PdfEncryptor.IsPrintingAllowed(reader.Permissions))
throw new InvalidOperationException("the selected file is print protected and cannot be imported");
if (!PdfEncryptor.IsModifyContentsAllowed(reader.Permissions))
throw new InvalidOperationException("the selected file is write protected and cannot be imported");
}
catch (BadPasswordException) { throw new InvalidOperationException("the selected file is password protected and cannot be imported"); }
catch (BadPdfFormatException) { throw new InvalidDataException("the selected file is having invalid format and cannot be imported"); }
}
参考:检查完全权限
您应该能够只检查属性 PdfReader.IsOpenedWithFullPermissions。
PdfReader r = new PdfReader("YourFile.pdf");
if (r.IsOpenedWithFullPermissions)
{
//Do something
}
以防万一它最终帮助某人,这是我在 vb.net 中使用的一个简单解决方案。使用完全权限检查的问题(如上所述)是您实际上无法打开具有阻止您打开它的密码的 PDF。在下面的代码中,我还有一些关于检查的事情。itextsharp.text.pdf 有一些您可能会发现实际上有用的例外情况,如果这没有满足您的需要,请检查一下。
Dim PDFDoc As PdfReader
Try
PDFDoc = New PdfReader(PDFToCheck)
If PDFDoc.IsOpenedWithFullPermissions = False Then
'PDF prevents things but it can still be opened. e.g. printing.
end if
Catch ex As iTextSharp.text.pdf.BadPasswordException
'this exception means the PDF can't be opened at all.
Finally
'do whatever if things are normal!
End Try