java实现pdf文件的分割与加密功能-亚博电竞手机版
由于``某些不可抗力原因,公司不允许使用itext系列的jar包,因此系统中使用的相关jar得替换成开源的。经比较和尝试考虑使用org.apache.pdfbox来替换,同时修改系统中原有的方法,发现比itext系列稍显简洁一点,记录如下:
加密文件
/** * 加密文件测试 * @from fhadmin.cn */ @test public void encrypttest(){ try { string filepath = "d:\\test\\像李开复一样思考人生.pdf"; string password = "1234"; pddocument document = pddocument.load(new file(filepath)); standardprotectionpolicy spp = new standardprotectionpolicy(password, password,new accesspermission()); document.protect(spp); stringnewfilepath = "d:\\test\\像李开复一样思考人生2.pdf"; document.save(newfilepath); document.close(); } catch (ioexception e) { e.printstacktrace(); } }
切割文件
/** * 切割文件测试 * @from fhadmin.cn */ @test public void extracttest(){ try { string newfilepath = "d:\\test\\像李开复一样思考人生2.pdf"; string password = "1234"; pddocument document = pddocument.load(new file(newfilepath), password);//带密码读取 //从第一页截取到第二页 pageextractor pageextractor = new pageextractor(document, 1, 2); pddocument extract = pageextractor.extract(); extract.save("d:\\test\\像李开复一样思考人生free.pdf"); extract.close(); document.close(); } catch (ioexception e) { e.printstacktrace(); } }
生成封面图
/** * 切割文件测试 * @from fhadmin.cn */ @test public void createcoverpictest(){ try { string pdfpath = "d:\\test\\像李开复一样思考人生.pdf"; file file = new file(pdfpath); //order目录 string orderpath = file.getparent(); //转换后的img目录 string bookname = file.getname().substring(0,file.getname().lastindexof(".")); string imgpath = orderpath file.separator bookname ".png"; log.debug("pdf封面图生成成功:{}", imgpath); pddocument pddocument = pddocument.load(new file(pdfpath)); pdfrenderer renderer = new pdfrenderer(pddocument); /* 第二位参数越大转换后越清晰,相对转换速度越慢 */ bufferedimage image = renderer.renderimagewithdpi(0, 150); imageio.write(image, "png", new file(imgpath)); } catch (ioexception e) { e.printstacktrace(); } }
总结一下,现在的工具都比较丰富了,不需要自己去造轮子,
step-1 去maven仓库检索同类型的包,比较一下热度和使用人数
step-2 下载对应包的source源代码,看一下框架整体结构,里面都有哪些package和类,不知道类是干什么的,可以看一下类上面的注释,一般都是比较简单的英文
step-3 动手写单元测试进行验证。
到此这篇关于java实现pdf文件的分割与加密功能的文章就介绍到这了,更多相关java 文件分割 加密内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!