-1
A
回答
0
我已執行此代碼,它完美的作品
BitMiracle.Docotic.Pdf.PdfDocument pdfcontent=null;
public static string GetText(string filename)
{
if (PdfDocument.IsPasswordProtected(filename))
{
//method to show dialog for password
pass=getPassword()
using (pdfcontent = new PdfDocument(filename, pass))
{
return pdf.GetTextWithFormatting();
}
}
else
{
using (pdfcontent = new PdfDocument(filename))
{
return pdf.GetTextWithFormatting();
}
}
}
相關問題
- 1. 打開密碼保護pdf文件
- 2. 打開密碼保護的PDF文檔
- 3. 密碼保護PDF
- 4. 如何使用MuPDF打開密碼保護的PDF
- 5. 使用PDFsharp打開受密碼保護的PDF
- 6. 用iTextSharp打開受密碼保護的pdf文件
- 7. 如何使用applescript打開受密碼保護的PDF?
- 8. 如何用c#打開受密碼保護的pdf#
- 9. 如何使用itext打開密碼保護的pdf
- 10. iTextSharp - 密碼保護PDF的
- 11. iTextSharp密碼保護PDF
- 12. 如何打開受密碼保護的PPT和PDF
- 13. 如何將受密碼保護的PDF保存爲非密碼保護的PDF
- 14. 在Android中打開密碼保護ZIP?
- 15. 用於打開密碼保護文件的C zip庫
- 16. 使用VBScript打開密碼保護的訪問數據庫
- 17. 使用PLOP密碼保護PDF(PDFLib)
- 18. 使用Ghostscript密碼保護PDF
- 19. 用密碼保護pdf文件c#
- 20. iTextsharp用長密碼保護PDF文件
- 21. 使用JavaScript密碼保護pdf
- 22. 密碼保護開關
- 23. PDF文件的密碼保護
- 24. 受密碼保護的PDF Jaspersoft
- 25. NReco PDF(精簡版)和密碼保護
- 26. 密碼保護的PDF不被PdfRenderer
- 27. 如何密碼保護的PDF在PHP
- 28. pdf表格字段密碼保護asp.net
- 29. 密碼保護在PHP中的pdf
- 30. 密碼保護生成的PDF頁面
感謝您的時間,但我發現了我要去這裏不久後的解決方案 – Lucifer