最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Java實現(xiàn)將列表數(shù)據(jù)導出為PDF文件并添加水印

 更新時間:2024年02月15日 08:15:03   作者:→_→BéLieve  
這篇文章主要為大家詳細介紹了如何使用Java實現(xiàn)把列表數(shù)據(jù)導出為PDF文件,同時加上PDF水印,文中的示例代碼講解詳細,需要的可以參考下

一、實現(xiàn)效果

二、遇到的問題

1.實現(xiàn)導出PDF主體代碼參考:Java純代碼實現(xiàn)導出PDF功能,下圖是原作者實現(xiàn)的效果

2.導出報錯Font 'STSong-Light' with 'UniGB-UCS2-H' is not recognized.。參考文末補充內(nèi)容

網(wǎng)上都是說jar包的版本不對,導致的字體兼容性問題。換了jar包版本發(fā)現(xiàn)沒效果,后來索性直接把字體下載到本地直接引入。

3.jar包發(fā)布到服務器上導出PDF的時候發(fā)生報錯BOOT-INF/classes!/fonts/SimSun.ttf not exists。

可以看到字體文件在jar目錄下面是有的,但是發(fā)現(xiàn)classes后面多了個嘆號。這是引入外部字體方式不對,后改用問題2參考文章的第三種寫法就沒問題了。

添加水印參考:itextpdf5.5.13給pdf添加圖片水印、添加文字水印(平鋪)、添加文字水印(單個)、添加頁眉、頁腳、頁眉事件、添加圖片

三、測試數(shù)據(jù)展示

list:子節(jié)點數(shù)據(jù)
0 = {BasBudgetDetailVo@16046} "BasBudgetDetailVo(budgetId=2064535550, functionId=231231232, budgetQuantity=3, totalPrice=2664.00, functionName=功能1, functionDescription=功能1描述, functionUnit=套, functionPrice=888.00, parentId=231234512, functionSort=1)"
1 = {BasBudgetDetailVo@16047} "BasBudgetDetailVo(budgetId=2039369726, functionId=231236478, budgetQuantity=1, totalPrice=888.00, functionName=功能1, functionDescription=功能1描述, functionUnit=套, functionPrice=888.00, parentId=231234879, functionSort=1)"
2 = {BasBudgetDetailVo@16048} "BasBudgetDetailVo(budgetId=2039369725, functionId=231236473, budgetQuantity=1, totalPrice=888.00, functionName=功能2, functionDescription=功能2描述, functionUnit=套, functionPrice=888.00, parentId=231234879, functionSort=2)"
3 = {BasBudgetDetailVo@16049} "BasBudgetDetailVo(budgetId=2056146943, functionId=231231241, budgetQuantity=1, totalPrice=888.00, functionName=功能2, functionDescription=功能2描述, functionUnit=套, functionPrice=888.00, parentId=231234512, functionSort=2)"
4 = {BasBudgetDetailVo@16050} "BasBudgetDetailVo(budgetId=2047758334, functionId=231236487, budgetQuantity=1, totalPrice=888.00, functionName=功能3, functionDescription=功能3描述, functionUnit=套, functionPrice=888.00, parentId=231234512, functionSort=3)"
5 = {BasBudgetDetailVo@16051} "BasBudgetDetailVo(budgetId=2039369724, functionId=231231245, budgetQuantity=1, totalPrice=888.00, functionName=功能3, functionDescription=功能3描述, functionUnit=套, functionPrice=888.00, parentId=231234879, functionSort=3)"
6 = {BasBudgetDetailVo@16052} "BasBudgetDetailVo(budgetId=2047758333, functionId=231231597, budgetQuantity=1, totalPrice=888.00, functionName=功能4, functionDescription=功能4描述, functionUnit=套, functionPrice=888.00, parentId=231234512, functionSort=4)"
7 = {BasBudgetDetailVo@16053} "BasBudgetDetailVo(budgetId=2030981118, functionId=231233154, budgetQuantity=1, totalPrice=888.00, functionName=功能4, functionDescription=功能4描述, functionUnit=套, functionPrice=888.00, parentId=231234879, functionSort=4)"
8 = {BasBudgetDetailVo@16054} "BasBudgetDetailVo(budgetId=2030981117, functionId=231234596, budgetQuantity=1, totalPrice=888.00, functionName=功能5, functionDescription=功能5描述, functionUnit=套, functionPrice=888.00, parentId=231234879, functionSort=5)"
9 = {BasBudgetDetailVo@16055} "BasBudgetDetailVo(budgetId=2030981116, functionId=231235487, budgetQuantity=1, totalPrice=888.00, functionName=功能6, functionDescription=功能6描述, functionUnit=套, functionPrice=888.00, parentId=231234879, functionSort=6)"

functionInfoList:根節(jié)點數(shù)據(jù)
0 = {BasFunctionInfo@16090} "BasFunctionInfo(functionId=231234512, functionName=模塊1, functionDescription=, functionUnit=0, functionPrice=0.00, createName=管理員, createBy=admin, createTime=Wed Jan 24 16:56:35 CST 2024, updateName=管理員, updateBy=admin, updateTime=Wed Jan 24 16:56:38 CST 2024, functionQuantity=null, functionSort=1, parentId=null)"
1 = {BasFunctionInfo@16091} "BasFunctionInfo(functionId=231234879, functionName=模塊2, functionDescription=, functionUnit=0, functionPrice=0.00, createName=管理員, createBy=admin, createTime=Wed Jan 24 16:56:35 CST 2024, updateName=管理員, updateBy=admin, updateTime=Wed Jan 24 16:56:38 CST 2024, functionQuantity=null, functionSort=2, parentId=null)"

matchList:當前節(jié)點的子節(jié)點數(shù)據(jù)

四、jar包引入

<!--導出pdf所需包-->
<dependency>
	<groupId>com.itextpdf</groupId>
	<artifactId>itextpdf</artifactId>
	<version>5.5.10</version>
</dependency>
<dependency>
	<groupId>com.itextpdf</groupId>
	<artifactId>itext-asian</artifactId>
	<version>5.2.0</version>
</dependency>
</dependencies>

五、外部字體引入

字體文件資源自己百度,直接搜SimSun.ttf字體下載不難找

六、代碼實現(xiàn)

private final ResourceLoader resourceLoader;

public BasBudgetDetailServiceImpl(ResourceLoader resourceLoader) {
    this.resourceLoader = resourceLoader;
}

/**
 * 導出pdf
 * 
 * @param response
 * @throws Exception
 */
@Override
public void downloadPdf(HttpServletResponse response) throws Exception {
	// 業(yè)務數(shù)據(jù),根據(jù)需求查詢獲取
    // 子節(jié)點數(shù)據(jù)
    List<BasBudgetDetailVo> list;
    // 根子節(jié)點數(shù)據(jù)
    List<BasFunctionInfo> functionInfoList;

    // 定義全局的字體靜態(tài)變量
    Font content = null;
    Resource resource = resourceLoader.getResource("classpath:/fonts/SimSun.ttf");
    InputStream inputStream = resource.getInputStream();
    BaseFont bfChinese = null;
    try {
        // 字體
        bfChinese = BaseFont.createFont("SimSun.ttf", BaseFont.IDENTITY_H, BaseFont.EMBEDDED, true, IOUtils.toByteArray(inputStream), null);
        content = new Font(bfChinese, 10, Font.NORMAL);
    } catch (Exception e) {
        e.printStackTrace();
    }
    BaseFont bf = null;
    Font font = null;
    try {
        //創(chuàng)建字體
        bf = BaseFont.createFont("SimSun.ttf", BaseFont.IDENTITY_H, BaseFont.EMBEDDED, true, IOUtils.toByteArray(inputStream), null);
        //使用字體并給出顏色
        font = new Font(bf, 20, Font.BOLD, BaseColor.BLACK);
    } catch (Exception e) {
        e.printStackTrace();
    }
    Document document = new Document(new RectangleReadOnly(842F, 595F));
    try {
        PdfWriter pdfWriter = PdfWriter.getInstance(document, response.getOutputStream());
        //打開生成的pdf文件
        document.open();
        //設置標題
        Paragraph paragraph = new Paragraph("這是標題文檔標題", font);
        paragraph.setAlignment(1);
        //引用字體
        document.add(paragraph);

        // 總額
        BigDecimal detailTotal = BigDecimal.valueOf(0);
        for (BasFunctionInfo functionInfo : functionInfoList) {
            // 匹配明細
            List<BasBudgetDetailVo> matchList = list.stream().filter(item ->
                            String.valueOf(item.getParentId()).equals(String.valueOf(functionInfo.getFunctionId())))
                    .collect(Collectors.toList());

            // 設置表格的列寬和列數(shù)
            float[] widths = {10f, 35f, 70f, 10f, 10f, 20f, 20f};
            PdfPTable table = new PdfPTable(widths);
            table.setSpacingBefore(20f);
            // 設置表格寬度為100%
            table.setWidthPercentage(100.0F);
            table.setHeaderRows(1);
            table.getDefaultCell().setHorizontalAlignment(1);
            //列表-表頭
            String[] titleList = new String[]{"序號", "功能名稱", "功能描述", "數(shù)量", "單位", "單價(元)", "總價(元)"};
            addTableTitle(table, content, titleList);
            // 模塊總額
            BigDecimal modelTotal = BigDecimal.valueOf(0);
            //列表數(shù)據(jù)
            if (matchList.size() > 0) {
                Integer index = 1;
                for (BasBudgetDetailVo item : matchList) {
                    PdfPCell cell1 = new PdfPCell(new Paragraph(String.valueOf(index), content));
                    PdfPCell cell2 = new PdfPCell(new Paragraph(item.getFunctionName(), content));
                    PdfPCell cell3 = new PdfPCell(new Paragraph(item.getFunctionDescription(), content));
                    PdfPCell cell4 = new PdfPCell(new Paragraph(String.valueOf(item.getBudgetQuantity()), content));
                    PdfPCell cell5 = new PdfPCell(new Paragraph(item.getFunctionUnit(), content));
                    PdfPCell cell6 = new PdfPCell(new Paragraph(String.valueOf(item.getFunctionPrice()), content));
                    BigDecimal totalPrice = item.getFunctionPrice().multiply(BigDecimal.valueOf(item.getBudgetQuantity()));
                    PdfPCell cell7 = new PdfPCell(new Paragraph(String.valueOf(totalPrice), content));
                    //單元格對齊方式
                    cell1.setFixedHeight(20);
                    cell1.setHorizontalAlignment(Element.ALIGN_CENTER);
                    cell1.setVerticalAlignment(Element.ALIGN_MIDDLE);

					// 文字長度大于15的時候,設置表格行間距,底邊距離
                    if (item.getFunctionName().length() > 15) {
                        cell2.setLeading(0f, 1.5f);
                        cell2.setPaddingBottom(10);
                    }
                    cell2.setHorizontalAlignment(Element.ALIGN_CENTER);
                    cell2.setVerticalAlignment(Element.ALIGN_MIDDLE);
					
					// 文字長度大于30的時候,設置表格行間距,底邊距離
                    if (item.getFunctionDescription().length() > 30) {
                        cell3.setLeading(0f, 1.5f);
                        cell3.setPaddingBottom(10);
                    }
                    cell3.setHorizontalAlignment(Element.ALIGN_CENTER);
                    cell3.setVerticalAlignment(Element.ALIGN_MIDDLE);

                    cell4.setHorizontalAlignment(Element.ALIGN_CENTER);
                    cell4.setVerticalAlignment(Element.ALIGN_MIDDLE);

                    cell5.setHorizontalAlignment(Element.ALIGN_CENTER);
                    cell5.setVerticalAlignment(Element.ALIGN_MIDDLE);

                    cell6.setHorizontalAlignment(Element.ALIGN_CENTER);
                    cell6.setVerticalAlignment(Element.ALIGN_MIDDLE);

                    cell7.setHorizontalAlignment(Element.ALIGN_CENTER);
                    cell7.setVerticalAlignment(Element.ALIGN_MIDDLE);

                    table.addCell(cell1);
                    table.addCell(cell2);
                    table.addCell(cell3);
                    table.addCell(cell4);
                    table.addCell(cell5);
                    table.addCell(cell6);
                    table.addCell(cell7);

                    // 序號
                    index++;

                    modelTotal = modelTotal.add(totalPrice);
                }
                // 合計行
                PdfPCell cell1 = new PdfPCell(new Paragraph("合計", content));
                cell1.setFixedHeight(20);
                cell1.setHorizontalAlignment(Element.ALIGN_CENTER);
                cell1.setVerticalAlignment(Element.ALIGN_MIDDLE);
                // 空格
                PdfPCell cell2 = new PdfPCell(new Paragraph("", content));
                cell2.setFixedHeight(20);
                cell2.setHorizontalAlignment(Element.ALIGN_CENTER);
                cell2.setVerticalAlignment(Element.ALIGN_MIDDLE);
                // 數(shù)額
                PdfPCell cell3 = new PdfPCell(new Paragraph(String.valueOf(modelTotal), content));
                cell3.setFixedHeight(20);
                cell3.setHorizontalAlignment(Element.ALIGN_CENTER);
                cell3.setVerticalAlignment(Element.ALIGN_MIDDLE);
                table.addCell(cell1);
                table.addCell(cell2);
                table.addCell(cell2);
                table.addCell(cell2);
                table.addCell(cell2);
                table.addCell(cell2);
                table.addCell(cell3);

                detailTotal = detailTotal.add(modelTotal);
            }

            document.add(new Paragraph("\n"));
            document.add(new Paragraph("▋ " + functionInfo.getFunctionName(), content));
            document.add(table);
            document.add(new Paragraph("\n"));

            if (matchList.size() == 0) {
                document.add(new Paragraph("暫無數(shù)據(jù)", content));
            }
        }

        document.add(new Paragraph("\n"));
        document.add(new Paragraph("總計:" + detailTotal + "元", content));

        // 加水印
        PdfContentByte waterMar = pdfWriter.getDirectContentUnder();
        String text = "天天想辭職月月拿全勤";
        addTextFullWaterMark(waterMar, text, bfChinese);

        document.close();
    } catch (DocumentException e) {
        e.printStackTrace();
        log.error("導出pdf失敗:{}", e);
    }
}

/**
 * 給表格添加表頭
 *
 * @param table
 * @param content
 * @param titleList
 */
public void addTableTitle(PdfPTable table, Font content, String[] titleList) {
    PdfPCell cell = null;
    for (String title : titleList) {
        cell = new PdfPCell(new Paragraph(title, content));
        cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
        cell.setHorizontalAlignment(Element.ALIGN_CENTER);
        cell.setFixedHeight(20);
        cell.setNoWrap(false);
        table.addCell(cell);
    }
}

/**
 * 給pdf添加文字水印(平鋪)
 *
 * @param waterMar
 * @param text     水印文本
 * @throws Exception
 */
public static void addTextFullWaterMark(PdfContentByte waterMar, String text, BaseFont bf) {
    waterMar.beginText();

    PdfGState gs = new PdfGState();
    // 設置填充字體不透明度為0.2f
    gs.setFillOpacity(0.2f);
    waterMar.setFontAndSize(bf, 20);
    // 設置透明度
    waterMar.setGState(gs);
    // 設置水印對齊方式 水印內(nèi)容 X坐標 Y坐標 旋轉角度
    for (int x = 0; x <= 900; x += 200) {
        for (int y = -50; y <= 800; y += 200) {
            waterMar.showTextAligned(Element.ALIGN_RIGHT, text, x, y, 35);
        }
    }

    // 設置水印顏色
    waterMar.setColorFill(BaseColor.GRAY);

    //結束設置
    waterMar.endText();
    waterMar.stroke();
}

七、知識補充

itext 生成 PDF使用外部字體

在 Spring Boot 項目中,使用 iTextPDF 庫的 BaseFont.createFont() 方法并使用外部字體,您需要將字體文件放置在項目的資源文件夾中,然后使用相對路徑來引用它們。

1.絕對路徑

BaseFont.createFont("C:\\Windows\\Fonts\\simfang.ttf",BaseFont.IDENTITY_H,BaseFont.EMBEDDED)

2.將字體文件放置在 src/main/resources/fonts 目錄下,讀取resource目錄下的字體

BaseFont baseFont = BaseFont.createFont("classpath:/fonts/simfang.ttf", BaseFont.IDENTITY_H, BaseFont.EMBEDDED);

注:此方式只有在打成jar時才生效

3.在 Spring Boot 項目中,您可以使用 ResourceLoader 來加載文件,而不必擔心文件路徑的問題。ResourceLoader 可以在任何環(huán)境中工作,無論是在 IDEA 中運行還是在打包的 JAR 文件中運行。

@Service
public class MyService {
 
    private final ResourceLoader resourceLoader;
 
    public MyService(ResourceLoader resourceLoader) {
        this.resourceLoader = resourceLoader;
    }
 
    public void generatePdf() throws IOException, DocumentException {
        //第一種情況 以 .ttf結尾的字體
        Resource resource = resourceLoader.getResource("classpath:/fonts/simfang.ttf");
        InputStream inputStream = resource.getInputStream();
        // Use the input stream to create the BaseFont object
        BaseFont baseFont = BaseFont.createFont("simfang.ttf", BaseFont.IDENTITY_H, BaseFont.EMBEDDED, true, inputStream, null);
 
    //第二種情況 以 .ttc結尾的字體
Resource resource1 = resourceLoader.getResource("classpath:/fonts/simsun.ttc");
        InputStream inputStream = resource1.getInputStream();
        // Use the input stream to create the BaseFont object
        BaseFont baseFont = BaseFont.createFont("simsun.ttc,0", BaseFont.IDENTITY_H, BaseFont.EMBEDDED, true, inputStream, null);
      
    }
}

以上就是Java實現(xiàn)將列表數(shù)據(jù)導出為PDF文件并添加水印的詳細內(nèi)容,更多關于Java列表數(shù)據(jù)導出為PDF的資料請關注腳本之家其它相關文章!

相關文章

  • Java編程中使用JDBC API連接數(shù)據(jù)庫和創(chuàng)建程序的方法

    Java編程中使用JDBC API連接數(shù)據(jù)庫和創(chuàng)建程序的方法

    這篇文章主要介紹了Java編程中使用JDBC API連接數(shù)據(jù)庫和創(chuàng)建程序的基本教程,JDBC是一種用于執(zhí)行SQL語句的Java API,可以為多種關系數(shù)據(jù)庫提供統(tǒng)一訪問需要的朋友可以參考下
    2015-12-12
  • 輕松掌握java中介者模式

    輕松掌握java中介者模式

    這篇文章主要幫助大家輕松掌握java中介者模式,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2016-09-09
  • Java Agent 動態(tài)修改字節(jié)碼詳情

    Java Agent 動態(tài)修改字節(jié)碼詳情

    這篇文章主要介紹了Java Agent動態(tài)修改字節(jié)碼的相關資料,需要的朋友可以參考下面文章具體的內(nèi)容
    2021-09-09
  • Java 基礎全面講解StringBuffer類的使用

    Java 基礎全面講解StringBuffer類的使用

    當對字符串進行修改的時候,需要使用 StringBuffer 和 StringBuilder類,和String類不同的是,StringBuffer和 StringBuilder類的對象能夠被多次的修改,并且不產(chǎn)生新的未使用對象
    2022-01-01
  • Java實現(xiàn)動物換位游戲完整?過程詳解

    Java實現(xiàn)動物換位游戲完整?過程詳解

    大家好,今天嘗試用Java編程設計一個GUI界面的動物換位游戲,游戲的結果是讓左右兩組的動物交換位置,以下是具體設計過程,供大家參考
    2022-07-07
  • Springboot接口返回參數(shù)及入?yún)SA加密解密的過程詳解

    Springboot接口返回參數(shù)及入?yún)SA加密解密的過程詳解

    這篇文章主要介紹了Springboot接口返回參數(shù)及入?yún)SA加密解密,本文通過實例代碼給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2023-07-07
  • spring?boot項目自定義參數(shù)校驗規(guī)則示例詳解

    spring?boot項目自定義參數(shù)校驗規(guī)則示例詳解

    這篇文章主要介紹了spring boot項目如何自定義參數(shù)校驗規(guī)則,自定義校驗規(guī)則和自帶的規(guī)則實現(xiàn)方式一樣,先自定義一個注解,然后指定校驗類,在校驗類里實現(xiàn)具體的校驗規(guī)則,本文結合示例代碼給大家介紹的非常詳細,需要的朋友可以參考下
    2023-07-07
  • spring?boot?mybatis日志輸出到控制臺的方法實踐

    spring?boot?mybatis日志輸出到控制臺的方法實踐

    在開發(fā)過程中我們往往需要打印出SQL語句,這樣就方便我們監(jiān)控問題,本文主要介紹了spring?boot?mybatis日志輸出到控制臺的方法實踐,具有一定的參考價值,感興趣的可以了解一下
    2024-05-05
  • SpringBoot自定義監(jiān)聽器的項目實踐

    SpringBoot自定義監(jiān)聽器的項目實踐

    Spring Boot提供了強大的事件模型,其中包括多種內(nèi)置監(jiān)聽器,同時也支持開發(fā)者自定義監(jiān)聽器,下面就來介紹下SpringBoot自定義監(jiān)聽器,感興趣的可以了解一下
    2024-03-03
  • Java多線程之定時器Timer的實現(xiàn)

    Java多線程之定時器Timer的實現(xiàn)

    定時/計劃功能在Java應用的各個領域都使用得非常多,比方說Web層面。本文主要為大家介紹了Java多線程中定時器Timer的實現(xiàn),感興趣的小伙伴可以了解一下
    2022-10-10

最新評論

集贤县| 洪湖市| 宁远县| 汝州市| 大化| 大城县| 安宁市| 岐山县| 阳泉市| 庆元县| 黄石市| 饶平县| 崇阳县| 余庆县| 防城港市| 新绛县| 常熟市| 禹城市| 招远市| 宜都市| 正镶白旗| 安远县| 桓台县| 合肥市| 晋宁县| 黄浦区| 景泰县| 甘洛县| 介休市| 饶平县| 峨山| 神农架林区| 突泉县| 中江县| 高碑店市| 台江县| 太和县| 石屏县| 河北省| 衡阳县| 镇雄县|