java 给pdf解密,关于使用pdfbox的Encrypt和Decrypt对pdf内容分别加密、解密进行写入处理代码示例...

一、前言

下面通过pdfbox的org.apache.pdfbox.pdmodel.PDDocument的pdf文件实现了分别对内容基于org.apache.pdfbox.tools.Encrypt加密、org.apache.pdfbox.tools.Decrypt进行pdf解密后存入PDF文件的代码示例。

二、代码示例

1.Encrypt加密代码示例package org.apache.pdfbox.tools;@b@@b@import java.io.File;@b@import java.io.FileInputStream;@b@import java.io.IOException;@b@import java.io.InputStream;@b@import java.security.cert.CertificateException;@b@import java.security.cert.CertificateFactory;@b@import java.security.cert.X509Certificate;@b@@b@import org.apache.pdfbox.pdmodel.PDDocument;@b@import org.apache.pdfbox.pdmodel.encryption.AccessPermission;@b@import org.apache.pdfbox.pdmodel.encryption.PublicKeyProtectionPolicy;@b@import org.apache.pdfbox.pdmodel.encryption.PublicKeyRecipient;@b@import org.apache.pdfbox.pdmodel.encryption.StandardProtectionPolicy;@b@@b@/**@b@ * This will read a document from the filesystem, encrypt it and and then write@b@ * the results to the filesystem.@b@ *@b@ * @author  Ben Litchfield@b@ */@b@public final class Encrypt@b@{@b@    private Encrypt()@b@    {@b@    }@b@@b@    /**@b@     * This is the entry point for the application.@b@     *@b@     * @param args The command-line arguments.@b@     *@b@     * @throws IOException If there is an error decrypting the document.@b@     * @throws CertificateException If there is an error with a certificate.@b@     */@b@    public static void main( String[] args ) throws IOException, CertificateException@b@    {@b@        // suppress the Dock icon on OS X@b@        System.setProperty("apple.awt.UIElement", "true");@b@@b@        Encrypt encrypt = new Encrypt();@b@        encrypt.encrypt( args );@b@    }@b@@b@    private void encrypt( String[] args ) throws IOException, CertificateException@b@    {@b@        if( args.length  [outputfile]\n"@b@                + "\nOptions:\n"@b@                + "  -O                             : Set the owner password (ignored if cert is set)\n"@b@                + "  -U                             : Set the user password (ignored if cert is set)\n"@b@                + "  -certFile                  : Path to X.509 certificate\n"@b@                + "  -canAssemble                 : Set the assemble permission\n"@b@                + "  -canExtractContent           : Set the extraction permission\n"@b@                + "  -canExtractForAccessibility  : Set the extraction permission\n"@b@                + "  -canFillInForm               : Set the fill in form permission\n"@b@                + "  -canModify                   : Set the modify permission\n"@b@                + "  -canModifyAnnotations        : Set the modify annots permission\n"@b@                + "  -canPrint                    : Set the print permission\n"@b@                + "  -canPrintDegraded            : Set the print degraded permission\n"@b@                + "  -keyLength                       : The length of the key in bits "@b@                + "(valid values: 40, 128 or 256, default is 40)\n"@b@                + "\nNote: By default all permissions are set to true!";@b@        @b@        System.err.println(message);@b@        System.exit(1);@b@    }@b@@b@}

2.Decrypt解密代码示例package org.apache.pdfbox.tools;@b@@b@import java.io.File;@b@import java.io.FileInputStream;@b@import java.io.IOException;@b@import java.io.InputStream;@b@@b@import org.apache.pdfbox.io.IOUtils;@b@import org.apache.pdfbox.pdmodel.PDDocument;@b@import org.apache.pdfbox.pdmodel.encryption.AccessPermission;@b@@b@/**@b@ * This will read a document from the filesystem, decrypt it and and then write@b@ * the result to the filesystem.@b@ *@b@ * @author  Ben Litchfield@b@ */@b@public final class Decrypt@b@{@b@    private static final String ALIAS = "-alias";@b@    private static final String PASSWORD = "-password";@b@    private static final String KEYSTORE = "-keyStore";@b@    @b@    private String password;@b@    private String infile;@b@    private String outfile;@b@    private String alias;@b@    private String keyStore;@b@@b@@b@    private Decrypt()@b@    {@b@    }@b@    /**@b@     * This is the entry point for the application.@b@     *@b@     * @param args The command-line arguments.@b@     *@b@     * @throws IOException If there is an error decrypting the document.@b@     */@b@    public static void main(String[] args) throws IOException@b@    {@b@        // suppress the Dock icon on OS X@b@        System.setProperty("apple.awt.UIElement", "true");@b@@b@        Decrypt decrypt = new Decrypt();@b@        decrypt.parseCommandLineArgs(args);@b@        decrypt.decrypt();@b@    }@b@    @b@    private void parseCommandLineArgs(String[] args)@b@    {@b@        if( args.length  8 )@b@        {@b@            usage();@b@        }@b@        else@b@        {@b@            for( int i=0; i= args.length )@b@                    {@b@                        usage();@b@                    }@b@                    alias = args[i];@b@                }@b@                else if( args[i].equals( KEYSTORE ) )@b@                {@b@                    i++;@b@                    if( i >= args.length )@b@                    {@b@                        usage();@b@                    }@b@                    keyStore = args[i];@b@                }@b@                else if( args[i].equals( PASSWORD ) )@b@                {@b@                    i++;@b@                    if( i >= args.length )@b@                    {@b@                        usage();@b@                    }@b@                    password = args[i];@b@                }@b@                else if( infile == null )@b@                {@b@                    infile = args[i];@b@                }@b@                else if( outfile == null )@b@                {@b@                    outfile = args[i];@b@                }@b@                else@b@                {@b@                    usage();@b@                }@b@            }@b@            if( infile == null )@b@            {@b@                usage();@b@            }@b@            if( outfile == null )@b@            {@b@                outfile = infile;@b@            }@b@            if( password == null )@b@            {@b@                password = "";@b@            }@b@        }@b@    }@b@@b@    private void decrypt() throws IOException@b@    {@b@        PDDocument document = null;@b@        InputStream keyStoreStream = null;@b@        try@b@        {@b@            if( keyStore != null )@b@            {@b@                keyStoreStream = new FileInputStream(keyStore);@b@            }@b@            document = PDDocument.load(new File(infile), password, keyStoreStream, alias);@b@            @b@            if (document.isEncrypted())@b@            {@b@                AccessPermission ap = document.getCurrentAccessPermission();@b@                if(ap.isOwnerPermission())@b@                {@b@                    document.setAllSecurityToBeRemoved(true);@b@                    document.save( outfile );@b@                }@b@                else@b@                {@b@                    throw new IOException(@b@                            "Error: You are only allowed to decrypt a document with the owner password." );@b@                }@b@            }@b@            else@b@            {@b@                System.err.println( "Error: Document is not encrypted." );@b@            }@b@        }@b@        finally@b@        {@b@            if( document != null )@b@            {@b@                document.close();@b@            }@b@            IOUtils.closeQuietly(keyStoreStream);@b@        }@b@    }@b@@b@    /**@b@     * This will print a usage message.@b@     */@b@    private static void usage()@b@    {@b@        @b@        String message = "Usage: java -jar pdfbox-app-x.y.z.jar Decrypt [options]  [outputfile]\n"@b@                + "\nOptions:\n"@b@                + "  -alias    : The alias of the key in the certificate file (mandatory if several keys are available\n"@b@                + "  -password : The password to open the certificate and extract the private key from it.\n"@b@                + "  -keyStore : The KeyStore that holds the certificate.";@b@        @b@        System.err.println(message);@b@        System.exit(1);@b@    }@b@@b@}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值