12

PDFBOXを使用してパスワードで保護されたPDFフォームをロードする方法

保護されていないPDFフォームをロードするための小さなコードがあります

  PDDocument pdfDoc;
  pdfDoc = PDDocument.load(filePath);

誰かが私を助けることができますか..ありがとう

4

2 に答える 2

12

このコードを試してください:

private void openPDFDoc(final File pdfFile) throws Exception {
        File originalPDF = pdfFile;
        PDFParser parser = new PDFParser(new BufferedInputStream(new FileInputStream(
                originalPDF)));
        parser.parse();

        PDDocument originialPdfDoc = parser.getPDDocument();

        boolean isOriginalDocEncrypted = originialPdfDoc.isEncrypted();
        if (isOriginalDocEncrypted) {
            originialPdfDoc.openProtection(new StandardDecryptionMaterial("password"));
        }
    }
于 2013-02-08T09:38:26.440 に答える
8

あなたはただ使うことができます

public static void main(String[] args){
PDDocument pd;
try {
     File input = new File("p.pdf");  // password protected PDF file from where you would like to extract
     pd = PDDocument.load(input,"your_password");
     pd.setAllSecurityToBeRemoved(true);

     //for printing pdf file data
     PDFTextStripper reader = new PDFTextStripper();
     String pageText = reader.getText(pd);
     System.out.println(pageText);
     } catch (Exception e){
     e.printStackTrace();
    } 
 }
于 2016-04-12T06:22:06.957 に答える