如何使用javascript保护密码保护pdf文件?

时间:2017-05-02 04:41:03

标签: javascript pdf alfresco

我发现使用java类我们可以使用密码保护pdf文件

private static String USER_PASS = "Hello123";

    private static String OWNER_PASS = "Owner123";


    public static void main(String[] args) {
        try {

            OutputStream file = new FileOutputStream(new File("D:\\Test.pdf"));

            Document document = new Document();
            PdfWriter writer = PdfWriter.getInstance(document, file);

            writer.setEncryption(USER_PASS.getBytes(), OWNER_PASS.getBytes(),
                    PdfWriter.ALLOW_PRINTING, PdfWriter.ENCRYPTION_AES_128);

            document.open();
            document.add(new Paragraph("Hello World, iText"));
            document.add(new Paragraph(new Date().toString()));

            document.close();
            file.close();

        } catch (Exception e) {

            e.printStackTrace();
        }
    }

但我们如何使用javascript保护pdf文件。 我提到了社区问题using javascript to password protect pdf,但我无法解决我的问题。 有没有任何源代码,所以它可以帮助我更多。 请帮忙。

0 个答案:

没有答案