项目集成 PDF
功能可以用于生成、处理和操作文件,常见的应用场景包括创建文档、添加水印、生成报表、报价单等。以下是主要功能及其意义:
1. 创建 PDF 文档
动态生成 PDF 文件,用于导出数据、生成合同、发票等。
支持从 HTML 模板、数据库数据或其他数据源生成 PDF。
2. 添加水印
在 PDF 文件中添加文字或图片水印,用于版权保护或标识文件状态(如“草稿”、“机密”)。
支持自定义水印内容、位置、透明度等。
3. 生成报表
将数据可视化并导出为 PDF 格式,适用于生成统计报表、财务报表、销售报表等。
支持表格、图表、图像等内容的嵌入。
4. 生成报价单
根据业务数据动态生成报价单,支持自定义模板和格式。
自动填充客户信息、产品明细、价格等内容。
5. PDF 操作
支持 PDF 文件的合并、拆分、加密、解密等操作。
提供对现有 PDF 文件的编辑功能,如添加页眉页脚、插入页码等。
添加依赖
在 pom.xml
配置文件中引入以下依赖:
js
<!-- 核心依赖模块 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-core</artifactId>
</dependency>
<!--excel转pdf-->
<dependency>
<groupId>com.luhuiguo</groupId>
<artifactId>aspose-cells</artifactId>
</dependency>
<!-- PDF依赖模块 -->
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
</dependency>
<!-- PDF中文包依赖模块 -->
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itext-asian</artifactId>
</dependency>
<!-- 设置PDF文件密码依赖模块 -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
</dependency>
在 xiaomayi-common/xiaomayi-pdf
模块中已经引入此依赖,在实际使用时直接引入以下依赖即可:
js
<!-- PDF依赖模块 -->
<dependency>
<groupId>com.xiaomayi</groupId>
<artifactId>xiaomayi-pdf</artifactId>
</dependency>
创建 PDF 并添加水印
在用户管理模块,官方特地编写了生成用户简历的 PDF文件
的功能,提供给企业和开发者做参考案例。
- 控制器端接收请求
js
package com.xiaomayi.admin.controller;
import cn.hutool.core.util.RandomUtil;
import com.itextpdf.text.DocumentException;
import com.xiaomayi.core.config.AppConfig;
import com.xiaomayi.core.utils.R;
import com.xiaomayi.core.utils.StringUtils;
import com.xiaomayi.excel.annotation.RequestExcel;
import com.xiaomayi.excel.annotation.ResponseExcel;
import com.xiaomayi.logger.annotation.RequestLog;
import com.xiaomayi.logger.enums.RequestType;
import com.xiaomayi.security.utils.SecurityUtils;
import com.xiaomayi.system.dto.user.*;
import com.xiaomayi.system.service.UserService;
import com.xiaomayi.system.utils.ParamResolver;
import com.xiaomayi.system.vo.user.UserExcelVO;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.AllArgsConstructor;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
import java.io.IOException;
import java.util.Collections;
import java.util.List;
/**
* <p>
* 用户 前端控制器
* </p>
*
* @author 小蚂蚁云团队
* @since 2024-03-23
*/
@RestController
@RequestMapping("/user")
@Tag(name = "用户管理", description = "用户管理")
@AllArgsConstructor
public class UserController {
private final UserService userService;
/**
* 生成文档
* 特别备注:此处文档生成仅为提供以编码的方式生成PDF文件案例参考,不涉及任何业务;
* 以此举一反三,理解逻辑后可以根据实际业务生成任何你所需要的文档,包括动态追加写入数据、图片等等;
*
* @param userId 用户ID
* @return 返回结果
* @throws IOException 异常处理
* @throws DocumentException 异常处理
*/
@Operation(summary = "生成文档", description = "生成文档")
@RequestLog(title = "生成文档", type = RequestType.OTHER)
@PreAuthorize("@pms.hasAuthority('sys:user:document')")
@GetMapping("/document/{userId}")
public R generateDocument(@PathVariable("userId") Integer userId) throws IOException, DocumentException {
return userService.generateDocument(userId);
}
}
- 生成PDF文件接口
js
package com.xiaomayi.system.service;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.itextpdf.text.DocumentException;
import com.xiaomayi.core.utils.R;
import com.xiaomayi.system.dto.user.*;
import com.xiaomayi.system.entity.User;
import com.xiaomayi.system.vo.user.UserExcelVO;
import com.xiaomayi.system.vo.user.UserInfoVO;
import com.xiaomayi.system.vo.user.UserListVO;
import com.xiaomayi.system.vo.user.UserProfileVO;
import java.io.IOException;
import java.util.List;
/**
* <p>
* 用户 服务类
* </p>
*
* @author 小蚂蚁云团队
* @since 2024-03-23
*/
public interface UserService extends IService<User> {
/**
* 生成文档
*
* @param userId 用户ID
* @return 返回结果
* @throws IOException 异常处理
* @throws DocumentException 异常处理
*/
R generateDocument(Integer userId) throws IOException, DocumentException;
}
- 生成PDF文件接口实现
js
package com.xiaomayi.system.service.impl;
import cn.hutool.core.convert.Convert;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
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 com.xiaomayi.core.config.AppConfig;
import com.xiaomayi.core.utils.*;
import com.xiaomayi.pdf.utils.PdfUtils;
import com.xiaomayi.system.dto.user.*;
import com.xiaomayi.system.entity.*;
import com.xiaomayi.system.mapper.*;
import com.xiaomayi.system.service.*;
import com.xiaomayi.system.utils.DictResolver;
import com.xiaomayi.system.vo.user.UserExcelVO;
import com.xiaomayi.system.vo.user.UserInfoVO;
import com.xiaomayi.system.vo.user.UserListVO;
import com.xiaomayi.system.vo.user.UserProfileVO;
import com.xiaomayi.tenant.annotation.TenantIgnore;
import lombok.AllArgsConstructor;
import org.springframework.beans.BeanUtils;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.time.LocalDateTime;
import java.util.*;
import java.util.List;
/**
* <p>
* 用户 服务实现类
* </p>
*
* @author 小蚂蚁云团队
* @since 2024-03-23
*/
@Service
@AllArgsConstructor
public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements UserService {
/**
* 生成文档
*
* @param userId 用户ID
* @return 返回结果
* @throws IOException 异常处理
* @throws DocumentException 异常处理
*/
@Override
public R generateDocument(Integer userId) throws IOException, DocumentException {
try {
// 根据用户ID查询信息
User user = getInfo(userId);
if (StringUtils.isNull(user)) {
return R.failed("用户不存在");
}
// 存储目录
String appPath = AppConfig.getProfile();
// 创建文件存放目录
String savePath = "/user/" + DateUtils.dateTime();
// 创建上传文件目录
File file = new File(appPath + savePath);
if (!file.mkdir()) {
file.mkdirs();
}
// 自定义上传文件名
String fileName = System.currentTimeMillis() + new Random().nextInt(1000) + ".pdf";
// 目标存储路径
String filePath = appPath + savePath + "/" + fileName;
// 创建文本
Document document = new Document();
File tempFile = new File(filePath);
// 建立一个书写器
PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream(tempFile));
document.open();
// 设置中文字体
BaseFont bfChinese = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H", BaseFont.NOT_EMBEDDED);
Font fontChinese = new Font(bfChinese, 12, Font.BOLD);
PdfPTable table = new PdfPTable(8); // 设置4列
table.setWidths(new int[]{1, 2, 2, 2, 2, 2, 2, 3});
table.setTotalWidth(540);// 设置绝对宽度
table.setLockedWidth(true);// 使绝对宽度模式生效
// 标题
Font fontTitle = new Font(bfChinese, 22, Font.BOLD);
PdfPCell cell = new PdfPCell(new Phrase("个人简历", fontTitle));
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setMinimumHeight(50);//设置表格行高
cell.setBorderWidth(0f);//去除表格的边框
cell.setColspan(8);
table.addCell(cell);
// ========================================== 第1行 =============================================
// 第1列
cell = new PdfPCell(new Paragraph("个\r\n人\r\n信\r\n息", fontChinese));
cell.setRowspan(5);
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
// 第2行
cell = new PdfPCell(new Paragraph("姓名:", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
cell = new PdfPCell(new Paragraph(user.getRealname(), fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
// 第2行
cell = new PdfPCell(new Paragraph("性别:", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
cell = new PdfPCell(new Paragraph(DictResolver.getDictItemName("sys_gender", user.getGender().toString()), fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
// 第2行
cell = new PdfPCell(new Paragraph("出生年月:", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
cell = new PdfPCell(new Paragraph("1998-12-28", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
// 设置个人头像
String imagePath = AppConfig.getProfile() + user.getAvatar(); // 图片的绝对路径
File gifFile = new File(imagePath);
Image image = null;
if (gifFile.exists()) {
// 取得图片对象
image = Image.getInstance(imagePath);
image.scaleAbsolute(80, 100);
}
// 第7列
if (StringUtils.isNotNull(image)) {
cell = new PdfPCell(image);
} else {
cell = new PdfPCell(new Paragraph("", fontChinese));
}
cell.setRowspan(4);
cell.setMinimumHeight(30);//设置表格行高
cell.setUseAscender(true); // 设置可以居中
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
// ========================================== 第2行 =============================================
// 第2行
cell = new PdfPCell(new Paragraph("民族:", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
cell = new PdfPCell(new Paragraph("汉族", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
// 第2行
cell = new PdfPCell(new Paragraph("籍贯:", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
cell = new PdfPCell(new Paragraph(user.getCityInfo(), fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
// 第2行
cell = new PdfPCell(new Paragraph("政治面貌:", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
cell = new PdfPCell(new Paragraph("党员", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
// ========================================== 第3行 =============================================
// 第3行
cell = new PdfPCell(new Paragraph("身高:", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
cell = new PdfPCell(new Paragraph("180cm", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("体重:", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
cell = new PdfPCell(new Paragraph("75KG", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("身体状况:", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
cell = new PdfPCell(new Paragraph("良好", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
// ========================================== 第4行 =============================================
// 第3行
cell = new PdfPCell(new Paragraph("联系电话:", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
cell = new PdfPCell(new Paragraph(user.getMobile(), fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("邮箱:", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
cell = new PdfPCell(new Paragraph(user.getEmail(), fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("现所在地:", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
cell = new PdfPCell(new Paragraph(user.getAddress(), fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
// ========================================== 第5行 =============================================
// 第一行
cell = new PdfPCell(new Paragraph("求职意向:", fontChinese));
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
cell.setMinimumHeight(30);//设置表格行高
table.addCell(cell);
//第一行填写值
cell = new PdfPCell(new Paragraph("", fontChinese));
cell.setColspan(6);//合并3列
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
cell.setMinimumHeight(30);//设置表格行高
table.addCell(cell);
// ========================================== 第6行 =============================================
PdfPTable table2 = new PdfPTable(4); // 设置4列
table2.setWidths(new int[]{1, 5, 5, 5});
table2.setTotalWidth(540);// 设置绝对宽度
table2.setLockedWidth(true);// 使绝对宽度模式生效
// 第1列
cell = new PdfPCell(new Paragraph("教\r\n育\r\n背\r\n景", fontChinese));
cell.setRowspan(3);
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table2.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("时间", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table2.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("院校", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table2.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("专业", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table2.addCell(cell);
// ========================================== 第7行 =============================================
// 第3行
cell = new PdfPCell(new Paragraph("", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table2.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table2.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table2.addCell(cell);
// ========================================== 第8行 =============================================
// 第3行
cell = new PdfPCell(new Paragraph("教育背景:", fontChinese));
cell.setColspan(3);
cell.setMinimumHeight(60);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_LEFT);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table2.addCell(cell);
// ========================================== 第8行 =============================================
PdfPTable table3 = new PdfPTable(4); // 设置4列
table3.setWidths(new int[]{1, 5, 5, 5});
table3.setTotalWidth(540);// 设置绝对宽度
table3.setLockedWidth(true);// 使绝对宽度模式生效
// 第1列
cell = new PdfPCell(new Paragraph("工\r\n作\r\n经\r\n历", fontChinese));
cell.setRowspan(7);
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table3.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("时间", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table3.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("单位", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table3.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("职位", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table3.addCell(cell);
// ========================================== 第7行 =============================================
// 第3行
cell = new PdfPCell(new Paragraph("", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table3.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table3.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table3.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("工作经历:", fontChinese));
cell.setColspan(3);
cell.setMinimumHeight(60);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_LEFT);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table3.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table3.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table3.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table3.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("工作经历:", fontChinese));
cell.setColspan(3);
cell.setMinimumHeight(60);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_LEFT);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table3.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table3.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table3.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table3.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("工作经历:", fontChinese));
cell.setColspan(3);
cell.setMinimumHeight(60);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_LEFT);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table3.addCell(cell);
// ========================================== 能力情况 =============================================
PdfPTable table4 = new PdfPTable(3); // 设置4列
table4.setWidths(new int[]{1, 3, 12});
table4.setTotalWidth(540);// 设置绝对宽度
table4.setLockedWidth(true);// 使绝对宽度模式生效
// 第1列
cell = new PdfPCell(new Paragraph("能\r\n力\r\n情\r\n况", fontChinese));
cell.setRowspan(3);
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table4.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("个人荣誉", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table4.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table4.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("兴趣特长", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table4.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table4.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("外语水平", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table4.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table4.addCell(cell);
// ========================================== 能力情况 =============================================
PdfPTable table5 = new PdfPTable(2); // 设置4列
table5.setWidths(new int[]{1, 15});
table5.setTotalWidth(540);// 设置绝对宽度
table5.setLockedWidth(true);// 使绝对宽度模式生效
// 第1列
cell = new PdfPCell(new Paragraph("自\r\n我\r\n评\r\n价", fontChinese));
cell.setMinimumHeight(100);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table5.addCell(cell);
// 第3行
cell = new PdfPCell(new Paragraph("", fontChinese));
cell.setMinimumHeight(100);//设置表格行高
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table5.addCell(cell);
document.add(table);
document.add(table2);
document.add(table3);
document.add(table4);
document.add(table5);
document.close();
writer.close();
// 文件加水印
String waterUrl = PdfUtils.setWaterMark(filePath, AppConfig.getName());
// 文件URL
String fileUrl = CommonUtils.getFileURL(waterUrl.replace(AppConfig.getProfile(), ""));
// 返回结果装配
Map<String, String> result = new HashMap<>();
result.put("fileName", fileName);
result.put("fileUrl", fileUrl);
// 返回结果
return R.ok(result);
} catch (Exception e) {
log.error("文件生成异常:{}", e);
}
return R.failed();
}
}
给 PDF文件
添加文字水印,调用以下方法:
js
PdfUtils.setWaterMark(PDF文件路径, "水印名称");
输出 PDF 文件
在用户列表操作栏中点击 打印按钮
即可创建并生成用户简历并弹出打印组件。
用户简历
原始文件存储在附件目录中,点击查看 用户简历 在线预览。
知识扩展,项目资金申请
js
package com.xiaomayi.admin.controller.demo;
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 lombok.AllArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.text.SimpleDateFormat;
/**
* <p>
* 案例测试 前端控制器
* </p>
*
* @author 小蚂蚁云团队
* @since 2024-05-26
*/
@Slf4j
@RestController
@RequestMapping("/pdf")
@AllArgsConstructor
public class PDFController {
@GetMapping("/document")
public void document() throws IOException, DocumentException {
// 设置中文字体
BaseFont bfChinese = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H", BaseFont.NOT_EMBEDDED);
Font fontChinese = new Font(bfChinese, 12, Font.BOLD);
// 创建文本
Document document = new Document();
String tempFilePath = "E:\\PDF\\项目资金申请.pdf";
File tempFile = new File(tempFilePath);
// 建立一个书写器
PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream(tempFile));
// 用户密码
String userPassword = "123456";
// 拥有者密码
String ownerPassword = "admin";
writer.setEncryption(userPassword.getBytes(), ownerPassword.getBytes(), PdfWriter.ALLOW_PRINTING,
PdfWriter.ENCRYPTION_AES_128);
document.open();
PdfPTable table = new PdfPTable(4); // 设置4列
table.setWidths(new int[]{1, 2, 1, 2});
table.setTotalWidth(540);// 设置绝对宽度
table.setLockedWidth(true);// 使绝对宽度模式生效
// 标题
Font fontTitle = new Font(bfChinese, 22, Font.BOLD);
PdfPCell cell = new PdfPCell(new Phrase("项目资金申请单", fontTitle));
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setMinimumHeight(50);//设置表格行高
cell.setBorderWidth(0f);//去除表格的边框
cell.setColspan(4);
table.addCell(cell);
// 第一行
cell = new PdfPCell(new Paragraph("申请编号:", fontChinese));
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
cell.setVerticalAlignment(Element.ALIGN_CENTER);
cell.setMinimumHeight(25);//设置表格行高
table.addCell(cell);
//第一行填写值
cell = new PdfPCell(new Paragraph("SQ202210270000055", fontChinese));
cell.setColspan(3);//合并3列
cell.setVerticalAlignment(Element.ALIGN_CENTER);
cell.setMinimumHeight(25);//设置表格行高
table.addCell(cell);
// 第2行
cell = new PdfPCell(new Paragraph("申请日期:", fontChinese));
cell.setMinimumHeight(25);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
cell.setVerticalAlignment(Element.ALIGN_CENTER);
table.addCell(cell);
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
cell = new PdfPCell(new Paragraph("2020-10-30", fontChinese));
cell.setMinimumHeight(25);//设置表格行高
cell.setVerticalAlignment(Element.ALIGN_CENTER);
table.addCell(cell);
// 第2行
cell = new PdfPCell(new Paragraph("申请人:", fontChinese));
cell.setMinimumHeight(25);//设置表格行高
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
cell.setVerticalAlignment(Element.ALIGN_CENTER);
table.addCell(cell);
cell = new PdfPCell(new Paragraph("程某某", fontChinese));
cell.setMinimumHeight(25);//设置表格行高
cell.setVerticalAlignment(Element.ALIGN_CENTER);
table.addCell(cell);
// 第4行
cell = new PdfPCell(new Paragraph("申请项目:", fontChinese));
cell.setVerticalAlignment(Element.ALIGN_CENTER);
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
cell.setMinimumHeight(25);//设置表格行高
table.addCell(cell);
cell = new PdfPCell(new Paragraph("中国高铁项目实施资金申请", fontChinese));
cell.setMinimumHeight(25);//设置表格行高
cell.setVerticalAlignment(Element.ALIGN_CENTER);
cell.setColspan(3);
table.addCell(cell);
//第5行
cell = new PdfPCell(new Paragraph("资金来源:", fontChinese));
cell.setMinimumHeight(25);//设置表格行高
cell.setVerticalAlignment(Element.ALIGN_CENTER);
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
table.addCell(cell);
cell = new PdfPCell(new Paragraph("国家财政", fontChinese));
cell.setMinimumHeight(25);//设置表格行高
cell.setVerticalAlignment(Element.ALIGN_CENTER);
table.addCell(cell);
cell = new PdfPCell(new Paragraph("支出类型:", fontChinese));
cell.setMinimumHeight(25);//设置表格行高
cell.setVerticalAlignment(Element.ALIGN_CENTER);
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
table.addCell(cell);
cell = new PdfPCell(new Paragraph("微信支出", fontChinese));
cell.setMinimumHeight(25);//设置表格行高
cell.setVerticalAlignment(Element.ALIGN_CENTER);
table.addCell(cell);
// 第6行
cell = new PdfPCell(new Paragraph("申请部门:", fontChinese));
cell.setMinimumHeight(15);//设置表格行高
cell.setVerticalAlignment(Element.ALIGN_CENTER);
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
table.addCell(cell);
cell = new PdfPCell(new Paragraph("铁路局", fontChinese));
cell.setMinimumHeight(25);//设置表格行高
cell.setVerticalAlignment(Element.ALIGN_CENTER);
table.addCell(cell);
cell = new PdfPCell(new Paragraph("项目负责人:", fontChinese));
cell.setMinimumHeight(25);//设置表格行高
cell.setVerticalAlignment(Element.ALIGN_CENTER);
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
table.addCell(cell);
cell = new PdfPCell(new Paragraph("张某某", fontChinese));
cell.setMinimumHeight(25);//设置表格行高
cell.setVerticalAlignment(Element.ALIGN_CENTER);
table.addCell(cell);
// 第7行
cell = new PdfPCell(new Paragraph("手机号码:", fontChinese));
cell.setMinimumHeight(25);//设置表格行高
cell.setVerticalAlignment(Element.ALIGN_CENTER);
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
table.addCell(cell);
cell = new PdfPCell(new Paragraph("18000000001", fontChinese));
cell.setMinimumHeight(25);//设置表格行高
cell.setVerticalAlignment(Element.ALIGN_CENTER);
table.addCell(cell);
// 第2行
cell = new PdfPCell(new Paragraph("申请理由:", fontChinese));
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
cell.setVerticalAlignment(Element.ALIGN_CENTER);
cell.setMinimumHeight(25);//设置表格行高
table.addCell(cell);
cell = new PdfPCell(new Paragraph("因社会发展需要", fontChinese));
cell.setVerticalAlignment(Element.ALIGN_CENTER);
cell.setMinimumHeight(25);//设置表格行高
table.addCell(cell);
// 第8行
cell = new PdfPCell(new Paragraph("申请金额:", fontChinese));
cell.setMinimumHeight(25);//设置表格行高
cell.setVerticalAlignment(Element.ALIGN_CENTER);
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
table.addCell(cell);
cell = new PdfPCell(new Paragraph("100000", fontChinese));
cell.setMinimumHeight(30);//设置表格行高
cell.setVerticalAlignment(Element.ALIGN_CENTER);
table.addCell(cell);
cell = new PdfPCell(new Paragraph("大写:", fontChinese));
cell.setMinimumHeight(25);//设置表格行高
cell.setVerticalAlignment(Element.ALIGN_CENTER);
cell.setHorizontalAlignment(Element.ALIGN_RIGHT);
table.addCell(cell);
cell = new PdfPCell(new Paragraph("拾万元整", fontChinese));
cell.setMinimumHeight(25);//设置表格行高
cell.setVerticalAlignment(Element.ALIGN_CENTER);
table.addCell(cell);
cell = new PdfPCell(new Phrase("", fontTitle));
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setMinimumHeight(50);//设置表格行高
cell.setBorderWidth(0f);//去除表格的边框
cell.setColspan(4);
table.addCell(cell);
document.add(table);
statement(document, fontChinese);
document.close();
writer.close();
}
//底部承诺
public static void statement(Document document, Font fontChinese) throws DocumentException {
//空白行
setNullLine(document, fontChinese, 10);
PdfPTable disclaimersTable = new PdfPTable(new float[]{540f});
disclaimersTable.setTotalWidth(500);
disclaimersTable.setLockedWidth(true);
setBaseCell(disclaimersTable, "项目申请承诺:", fontChinese, 25, 1, true, Element.ALIGN_LEFT);
setBaseCell(disclaimersTable, "□本人对本次报销的真实性、合理性、相关性负责,由此引起的审计、检查责任由本人承担。", fontChinese, 25, 1, true, Element.ALIGN_LEFT);
setBaseCell(disclaimersTable, "□本人已核对本次报销的发票真实无误,电子发票承诺不重复报销。", fontChinese, 25, 1, true, Element.ALIGN_LEFT);
setBaseCell(disclaimersTable, "", fontChinese, 25, 2, true, Element.ALIGN_CENTER);
document.add(disclaimersTable);
//增加一行
PdfPTable lastTable = new PdfPTable(new float[]{340f, 200f});
lastTable.setTotalWidth(500);
lastTable.setLockedWidth(true);
setBaseCell(lastTable, "", fontChinese, 25, 1, true, Element.ALIGN_LEFT);
setBaseCell(lastTable, "项目负责人:高某某", fontChinese, 25, 1, true, Element.ALIGN_LEFT);
setBaseCell(lastTable, "", fontChinese, 25, 1, true, Element.ALIGN_LEFT);
setBaseCell(lastTable, "项目申请人:张某某", fontChinese, 25, 1, true, Element.ALIGN_LEFT);
setBaseCell(lastTable, "", fontChinese, 25, 1, true, Element.ALIGN_LEFT);
setBaseCell(lastTable, "联系电话:18000000001", fontChinese, 25, 1, true, Element.ALIGN_LEFT);
setBaseCell(lastTable, "", fontChinese, 25, 1, true, Element.ALIGN_LEFT);
setBaseCell(lastTable, "申请时间:2024年6月20号", fontChinese, 25, 1, true, Element.ALIGN_LEFT);
document.add(lastTable);
}
/**
* 空行
*
* @param document
* @param fontChinese
* @param height
*/
public static void setNullLine(Document document, Font fontChinese, Integer height) throws DocumentException {
PdfPTable nullTable = new PdfPTable(1);
nullTable.setTotalWidth(780);
nullTable.setLockedWidth(true);
setNullCell(nullTable, fontChinese, height, 1);
document.add(nullTable);
}
/**
* 添加空格项
*
* @param table
* @param fontChinese
* @param height
* @param colspan
*/
private static void setNullCell(PdfPTable table, Font fontChinese, Integer height, Integer colspan) {
PdfPCell cell = new PdfPCell(new Paragraph("", fontChinese));
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setColspan(colspan);
//设置表格行高
cell.setMinimumHeight(height);
//去除表格的边框
cell.setBorderWidth(0f);
table.addCell(cell);
}
/**
* 初始化单元格
*
* @param payTable
* @param value 值
* @param fontChinese 样式
* @param minimumHeight 最低高度
* @param colspan 占用多少个单元格
* @param hideBorder 是否去除边框
* @param alignment 对齐方式
*/
public static void setBaseCell(PdfPTable payTable, String value, Font fontChinese, Integer minimumHeight, Integer colspan, Boolean hideBorder, Integer alignment) {
PdfPCell cell = new PdfPCell(new Phrase(value, fontChinese));
cell.setHorizontalAlignment(alignment);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
//最低高度
cell.setMinimumHeight(minimumHeight);
//去除边框
if (hideBorder) {
cell.setBorderWidth(0f);
}
//占用几格
cell.setColspan(colspan);
payTable.addCell(cell);
}
}
项目资金申请
原始文件存储在附件目录中,点击查看 项目资金申请 在线预览。
总结
通过以上步骤,你可以在项目中实现 PDF
文件的生成、存储和加载功能。