亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java怎么實現PDF文件的分割與加密功能

發布時間:2022-04-19 17:13:48 來源:億速云 閱讀:197 作者:iii 欄目:開發技術

本篇內容主要講解“Java怎么實現PDF文件的分割與加密功能”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Java怎么實現PDF文件的分割與加密功能”吧!

加密文件

/**
     * 加密文件測試
     * @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);
            String newFilePath = "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文件的分割與加密功能”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

汤原县| 永寿县| 黔南| 中宁县| 海淀区| 遵义县| 白玉县| 桐庐县| 建德市| 合江县| 德安县| 周至县| 女性| 南乐县| 贡嘎县| 高淳县| 新建县| 宣汉县| 温宿县| 尉犁县| 基隆市| 子洲县| 尼木县| 泸州市| 汕尾市| 岳阳县| 慈溪市| 屯留县| 黄陵县| 大英县| 镶黄旗| 镇宁| 临湘市| 保德县| 兴文县| 商城县| 阿巴嘎旗| 开江县| 沁水县| 溆浦县| 吉木萨尔县|