[ 
https://issues.apache.org/jira/browse/PDFBOX-2292?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andreas Lehmkühler closed PDFBOX-2292.
--------------------------------------

> Saving of decrypted version of password protected document gives an error
> -------------------------------------------------------------------------
>
>                 Key: PDFBOX-2292
>                 URL: https://issues.apache.org/jira/browse/PDFBOX-2292
>             Project: PDFBox
>          Issue Type: Bug
>    Affects Versions: 1.8.6, 1.8.7, 2.0.0
>         Environment: JDK 1.6
>            Reporter: v gangolli
>            Assignee: Tilman Hausherr
>              Labels: decrypt
>             Fix For: 1.8.7, 2.0.0
>
>         Attachments: Sample_Owner_pwd_protected.pdf
>
>
> For a  sample owner-password-protected pdf that I can decrypt and save to 
> another file in Pdfbox 1.8.5, however, in the  2.0.0 build created using the 
> repository  checked out of svn, I get an exception while saving.
> java.io.IOException: Cannot save a document which has been closed
>       at org.apache.pdfbox.pdmodel.PDDocument.save(PDDocument.java:1229)
>       at org.apache.pdfbox.pdmodel.PDDocument.save(PDDocument.java:1215)
>       at org.apache.pdfbox.pdmodel.PDDocument.save(PDDocument.java:1203)
> The code snippet is as follows-
> {code}
> pd = PDDocument.load(is);
> if (pd.isEncrypted()) {
>   try {
>         pd.decrypt("");
>         pd.setAllSecurityToBeRemoved(true);
>           fNameStr = fName.substring(0, fName.lastIndexOf('.'))
>                                                       + "_new.pdf";
>           System.out.println(pd.getCurrentAccessPermission()
>          pd.save(fNameStr);  // java.IOException at this line
>       } catch (Exception e) {
>               e.printStackTrace();
>       } finally {
>                        pd.close();
>                       if (is != null) {
>                         is.close();
>                       }
>                                       
>       }
> {code}
>                       



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to