JAVA使用itext来生成PDF表格实例和使用说明

2024-05-05 01:38

本文主要是介绍JAVA使用itext来生成PDF表格实例和使用说明,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在对接某第三方XX平台时需要对表格传入PDF文件类型。于是自造了一个。

Maven使用版本如下:

    <dependency><groupId>com.itextpdf</groupId><artifactId>itextpdf</artifactId><version>5.5.13.1</version></dependency>

支持中文的一个jar包

<dependency><groupId>com.itextpdf</groupId><artifactId>itext-asian</artifactId><version>5.2.0</version></dependency>

最终效果:

以下是全部的代码实现以及说明:

package com.qingzu.applet.util;import com.itextpdf.text.*;
import com.itextpdf.text.pdf.BaseFont;
import com.itextpdf.text.pdf.PdfPCell;
import com.itextpdf.text.pdf.PdfPTable;
import com.itextpdf.text.pdf.PdfWriter;
import org.springframework.stereotype.Component;
import java.io.FileOutputStream;
public class CreatePDFUtils1 {/***新建以下两个方法,创建表格内的字体和样式的方法* @param str 内容* @param font 字体对象* @param high 表格高度* @Param alignCenter 是否水平居中* @Param alignMidde  是否垂直居中* @return*/private static PdfPCell  mircoSoftFont(String str,Font font,int high,boolean alignCenter,boolean alignMidde){PdfPCell pdfPCell  = new PdfPCell(new Phrase(str,font));pdfPCell.setMinimumHeight(high);pdfPCell.setUseAscender(true); // 设置可以居中if (alignCenter){pdfPCell.setHorizontalAlignment(PdfPCell.ALIGN_CENTER); // 设置水平居中}if (alignMidde){pdfPCell.setVerticalAlignment(PdfPCell.ALIGN_MIDDLE); // 设置垂直居中}return pdfPCell;}/**** @param str 字符串* @param font 字体* @param high 表格高度* @Param alignCenter 是否水平居中* @Param alignMidde  是否垂直居中* @Param haveColor 是否有背景色(灰色)* @return*/private static PdfPCell  mircoSoftFont(String str,Font font,int high,boolean alignCenter,boolean alignMidde,boolean haveColor){PdfPCell pdfPCell  = new PdfPCell(new Phrase(str,font));pdfPCell.setMinimumHeight(high);pdfPCell.setUseAscender(true); // 设置可以居中if (alignCenter){pdfPCell.setHorizontalAlignment(PdfPCell.ALIGN_CENTER); // 设置水平居中}if (alignMidde){pdfPCell.setVerticalAlignment(PdfPCell.ALIGN_MIDDLE); // 设置垂直居中}if (haveColor){//颜色代码 RGBpdfPCell.setBackgroundColor(new BaseColor(217,217,217));}return pdfPCell;}public static void createHardwarePDF( String outputPath)throws Exception{//新建文档对象,页大小为A4纸,然后设置4个边距Document document = new Document(PageSize.A4,20,20,30,30);PdfWriter writer = PdfWriter.getInstance(document,new FileOutputStream(outputPath));document.open();//创建字体BaseFont baseFont = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H",BaseFont.NOT_EMBEDDED);//字体对象Font size14font = new Font(baseFont,14,Font.NORMAL);  //大小为14的正常字体Font size10font = new Font(baseFont,10,Font.BOLD); //大小为10的粗体//添加标题PdfPTable tableName = new PdfPTable(1);tableName.setWidthPercentage(90);  //设置标题长度占纸张比例tableName.addCell(mircoSoftFont("个人信息",size14font,50,true,true));document.add(tableName);//添加第二行的数据PdfPTable secondRowTable = new PdfPTable(3); //三列的意思secondRowTable.setWidthPercentage(90);//这里的数组长度是上面创建的列数,数组的总和为1,就是按比例划分的意思secondRowTable.setTotalWidth(new float[]{0.18f,0.32f,0.5f});secondRowTable.addCell(mircoSoftFont(" 姓名: ",size10font,50,false,true));secondRowTable.addCell(mircoSoftFont("李晓明",size10font,50,false,true));secondRowTable.addCell(mircoSoftFont(" 出生日期: 1994年3月14日",size10font,50,false,true));document.add(secondRowTable);//第三行数据PdfPTable thirdRowTable = new PdfPTable(3);thirdRowTable.setWidthPercentage(90);thirdRowTable.setTotalWidth(new float[]{0.18f,0.32f,0.5f});thirdRowTable.addCell(mircoSoftFont(" 名族:",size10font,50,false,true));thirdRowTable.addCell(mircoSoftFont("汉族",size10font,50,false,true));thirdRowTable.addCell(mircoSoftFont(" 联系电话: 13888880000",size10font,50,false,true));document.add(thirdRowTable);//第四行数据PdfPTable fourthRowTable = new PdfPTable(2);fourthRowTable.setWidthPercentage(90);fourthRowTable.setTotalWidth(new float[]{0.66f,0.34f});fourthRowTable.addCell(mircoSoftFont(" 个人描述 :",size10font,175,false,false));fourthRowTable.addCell(mircoSoftFont("个人特长 :",size10font,175,false,false));document.add(fourthRowTable);//第五行PdfPTable fifthDetailName = new PdfPTable(1);fifthDetailName.setWidthPercentage(90);fifthDetailName.addCell(mircoSoftFont("获奖记录 :",size14font,50,true,true));document.add(fifthDetailName);//第六行PdfPTable sisthRowTalbe= new PdfPTable(1);sisthRowTalbe.setWidthPercentage(90);sisthRowTalbe.addCell(mircoSoftFont(" 联系地址: "+"广东省广州市天河区XXXXXXXXXXXXXXXXXX",size10font,50,false,true));document.add(sisthRowTalbe);PdfPTable seventhRowTalbe = new PdfPTable(1);seventhRowTalbe.setWidthPercentage(90);seventhRowTalbe.addCell(mircoSoftFont(" 毕业院校 ",size14font,60,true,true));document.add(seventhRowTalbe);//第八行PdfPTable eiththRowTalbe = new PdfPTable(3);eiththRowTalbe.setWidthPercentage(90);eiththRowTalbe.setTotalWidth(new float[]{0.3f,0.5f,0.2f});eiththRowTalbe.addCell(mircoSoftFont(" 毕业学校",size10font,50,true,true,true));eiththRowTalbe.addCell(mircoSoftFont(" 就读日期",size10font,50,true,true,true));eiththRowTalbe.addCell(mircoSoftFont(" 联系人",size10font,50,true,true,true));document.add(eiththRowTalbe);//接下来加ListString school = "XXX学校";String time = "201909  -  2022-06";String name = "陈某";for (int i = 0 ;i<4 ;i++){PdfPTable tempTable = new PdfPTable(3);tempTable.setWidthPercentage(90);tempTable.setTotalWidth(new float[]{0.3f,0.5f,0.2f});tempTable.addCell(mircoSoftFont(school,size10font,50,true,true));tempTable.addCell(mircoSoftFont(time,size10font,50,true,true));tempTable.addCell(mircoSoftFont(name,size10font,50,true,true));document.add(tempTable);}document.close();writer.close();}//使用例子public static void main(String[] args)throws Exception{createHardwarePDF("test.pdf");}}

 

 

完成。

这篇关于JAVA使用itext来生成PDF表格实例和使用说明的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/960549

相关文章

vue使用docxtemplater导出word

《vue使用docxtemplater导出word》docxtemplater是一种邮件合并工具,以编程方式使用并处理条件、循环,并且可以扩展以插入任何内容,下面我们来看看如何使用docxtempl... 目录docxtemplatervue使用docxtemplater导出word安装常用语法 封装导出方

Linux换行符的使用方法详解

《Linux换行符的使用方法详解》本文介绍了Linux中常用的换行符LF及其在文件中的表示,展示了如何使用sed命令替换换行符,并列举了与换行符处理相关的Linux命令,通过代码讲解的非常详细,需要的... 目录简介检测文件中的换行符使用 cat -A 查看换行符使用 od -c 检查字符换行符格式转换将

Java编译生成多个.class文件的原理和作用

《Java编译生成多个.class文件的原理和作用》作为一名经验丰富的开发者,在Java项目中执行编译后,可能会发现一个.java源文件有时会产生多个.class文件,从技术实现层面详细剖析这一现象... 目录一、内部类机制与.class文件生成成员内部类(常规内部类)局部内部类(方法内部类)匿名内部类二、

SpringBoot实现数据库读写分离的3种方法小结

《SpringBoot实现数据库读写分离的3种方法小结》为了提高系统的读写性能和可用性,读写分离是一种经典的数据库架构模式,在SpringBoot应用中,有多种方式可以实现数据库读写分离,本文将介绍三... 目录一、数据库读写分离概述二、方案一:基于AbstractRoutingDataSource实现动态

使用Jackson进行JSON生成与解析的新手指南

《使用Jackson进行JSON生成与解析的新手指南》这篇文章主要为大家详细介绍了如何使用Jackson进行JSON生成与解析处理,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1. 核心依赖2. 基础用法2.1 对象转 jsON(序列化)2.2 JSON 转对象(反序列化)3.

Springboot @Autowired和@Resource的区别解析

《Springboot@Autowired和@Resource的区别解析》@Resource是JDK提供的注解,只是Spring在实现上提供了这个注解的功能支持,本文给大家介绍Springboot@... 目录【一】定义【1】@Autowired【2】@Resource【二】区别【1】包含的属性不同【2】@

springboot循环依赖问题案例代码及解决办法

《springboot循环依赖问题案例代码及解决办法》在SpringBoot中,如果两个或多个Bean之间存在循环依赖(即BeanA依赖BeanB,而BeanB又依赖BeanA),会导致Spring的... 目录1. 什么是循环依赖?2. 循环依赖的场景案例3. 解决循环依赖的常见方法方法 1:使用 @La

Java枚举类实现Key-Value映射的多种实现方式

《Java枚举类实现Key-Value映射的多种实现方式》在Java开发中,枚举(Enum)是一种特殊的类,本文将详细介绍Java枚举类实现key-value映射的多种方式,有需要的小伙伴可以根据需要... 目录前言一、基础实现方式1.1 为枚举添加属性和构造方法二、http://www.cppcns.co

使用Python实现快速搭建本地HTTP服务器

《使用Python实现快速搭建本地HTTP服务器》:本文主要介绍如何使用Python快速搭建本地HTTP服务器,轻松实现一键HTTP文件共享,同时结合二维码技术,让访问更简单,感兴趣的小伙伴可以了... 目录1. 概述2. 快速搭建 HTTP 文件共享服务2.1 核心思路2.2 代码实现2.3 代码解读3.

Elasticsearch 在 Java 中的使用教程

《Elasticsearch在Java中的使用教程》Elasticsearch是一个分布式搜索和分析引擎,基于ApacheLucene构建,能够实现实时数据的存储、搜索、和分析,它广泛应用于全文... 目录1. Elasticsearch 简介2. 环境准备2.1 安装 Elasticsearch2.2 J