itext 5.5.9-设置加密时出现问题

时间:2018-08-24 10:01:33

标签: java itext

设置pdf加密时出现以下异常。

Exception in thread "AWT-EventQueue-0" java.lang.NoClassDefFoundError: 
org/bouncycastle/asn1/ASN1Primitive

下面是代码-

public void manipulatePdf(String src, String dest) throws IOException, DocumentException {
    PdfReader reader = new PdfReader(src);
    int n = reader.getNumberOfPages();
    PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(dest));

    HashMap<String, String> info = reader.getInfo();
    info.put("Title", "Accessible Itext PDF");
    info.put("Subject", "Itext PDF");
    info.put("Keywords", "Itext");
    info.put("Creator", "Me");
    info.put("Author", "Me");
    stamper.setMoreInfo(info);
    stamper.setEncryption(USER_PASSWORD.getBytes(),OWNER_PASSWORD.getBytes(), PdfWriter.ALLOW_PRINTING,PdfWriter.ENCRYPTION_AES_128);

    PdfContentByte pagecontent;

    for (int i = 0; i < n; ) {
        pagecontent = stamper.getOverContent(++i);
        ColumnText.showTextAligned(pagecontent, Element.ALIGN_RIGHT,
                new Phrase(String.format("page %s of %s", i, n)), 550, 20, 0);
    }

    stamper.close();
    reader.close();
}        

我在外部添加了itext 5.5.9,bcprov-jdk16-146,bcmail-jdk16-146,bctsp-jdk16-146罐子,但我仍然遇到错误。

2 个答案:

答案 0 :(得分:1)

"encoding": { "x": ..., "y": ..., "color": { "field": "color", "legend": null, "type":"nominal", "scale": null } } org/bouncycastle/asn1/ASN1Primitive的一部分。将其下载到您的类路径中,错误应该消失。

您可以here下载它

答案 1 :(得分:0)

好吧,我开始工作了。

似乎itext 5.5.9 jar存在问题。我用itext 5.2.1代替了它,并且效果很好。