java 生成pdf文件加密

前言

一、Ftl模板制作

1.编写HTML标签

2.修改文件后缀,把html改成ftl

二、生成PDF并加密

1.引入jar包

2.关键代码

总结


前言

使用html页面改成ftl模板,生成PDF,并对生成的PDF进行加密


一、Ftl模板制作

1.编写HTML标签

示例如下:




    
    1212
    



${info1}
${info2}

${com}
${comen}
${context}

${title}

2.修改文件后缀,把html改成ftl

java 生成pdf文件加密_第1张图片


二、生成PDF并加密

1.引入jar包



    org.springframework.boot
    spring-boot-starter-freemarker



    org.freemarker
    freemarker
    2.3.30



    e-iceblue
    spire.office.free
    2.2.0

2.关键代码

代码如下:

public class PDFTest {

    private static String path ="Y:\\1";

    /**
     * 生成PDF并加密
     */
    @org.junit.jupiter.api.Test
    public byte[] test()
    {

        Configuration configuration = new Configuration();
        configuration.setDefaultEncoding("UTF-8");
        //构建PDF需要替换的值
        Map psnMap = (Map) this.getFormInfo(pk, visa);
        Map map = this.dataDownPdfQuery(psnMap);
        String templateName="1.ftl";
        configuration.setDirectoryForTemplateLoading(new File(path));
        Template templatehtml = configuration.getTemplate(templateName);
        File file = new File(templateName);
        StringWriter writer = new StringWriter();
        templatehtml.process(map, writer);
        writer.flush();
        OutputStream os = null;
        File files=new File(path + File.separator + templateName.replace(".ftl", ".pdf") );
        os = new FileOutputStream(files);
        ITextRenderer renderer = new ITextRenderer();
        renderer.setDocumentFromString(writer.toString());
        ITextFontResolver fontResolver = renderer.getFontResolver();
        fontResolver.addFont(path + File.separator+"fonts/mcyahei.ttf", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
        renderer.layout();
        renderer.createPDF(os);
        os.close();

        //上半段是生成PDF,下半截是对生成的PDF进行设置密码加密
        //创建PdfDocument实例
        PdfDocument doc = new PdfDocument();
        //加载PDF文件
        doc.loadFromFile(files.getAbsolutePath());
        doc.getPages().add();
        //对文件进行加密
        PdfEncryptionKeySize keySize = PdfEncryptionKeySize.Key_128_Bit;
        String date="20221222"
        String openPassword = date;//打开文档时,仅用于查看文档
        String permissionPassword = date;//打开文档时,可编辑文档
        EnumSet flags = EnumSet.of(PdfPermissionsFlags.Print, PdfPermissionsFlags.Fill_Fields);
        doc.getSecurity().encrypt(openPassword, permissionPassword, flags, keySize);
        doc.getPages().remove(doc.getPages().get(doc.getPages().getCount()-1));
        //保存文件
        doc.saveToFile(files.getAbsolutePath());
        doc.close();
        return EntryFileConfiguration.fileToBytes(files);
    }
}

注意注意!

如果内容中出现了特殊符号记得用转义符替换,&换&

// 获取相应的需要替换的内容
    Iterator> map1it = map.entrySet().iterator();
		while (map1it.hasNext()) {
        Map.Entry entry = (Entry) map1it
                .next();
        if (!(entry.getValue() instanceof List)) {
            if (entry.getValue() != null
                    && entry.getValue().toString().contains("&")) {
                String newValue = entry.getValue().toString().replace("&", "&");
                map.put(entry.getKey(), newValue);
            }
            if (entry.getValue() != null&& entry.getValue().toString().contains("<")) {
                String newValue = entry.getValue().toString().replace("<", "<");
                map.put(entry.getKey(), newValue);
            }
        } else {
            for (Object childMap : (List) entry.getValue()) {
                if (childMap != null && (childMap instanceof Map)) {
                    Map child = (Map) childMap;
                    for (Entry childEntry : child.entrySet()) {
                        if (childEntry.getValue() == null) {
                            continue;
                        }
                        if (childEntry.getValue().toString().contains("&")) {
                            String newValue = childEntry.getValue().toString().replace("&", "&");
                            child.put(childEntry.getKey(), newValue);
                        }
                        if (childEntry.getValue().toString().contains("<")) {
                            String newValue = childEntry.getValue().toString().replace("<", "<");
                            child.put(childEntry.getKey(), newValue);
                        }
                    }

                }
            }
        }

总结

本文仅仅简单介绍了通过ftl模板生成PDF的使用,而使用spire.office.free jar提供了大量能使我们快速便捷地处理PDF加密解密的方法,继续探究冲冲冲!

你可能感兴趣的:(Word,PDF,Excel处理方式,pdf)