网站首页 > 技术文章 正文
使用itext生成PDF,并将文字内容生成到PDF的固定位置(比如标题页的文字,或者落款处的文字)。
//创建文件
Document document = new Document();
//一定要使用中文字体,不然中文内容显示不出来
BaseFont bfChinese = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H", BaseFont.NOT_EMBEDDED);
//创建PDF
PdfWriter writer = PdfWriter.getInstance(document, new
FileOutputStream("test.pdf"));
PdfContentByte cb = writer.getDirectContent();
cb.beginText();
//设置字体和文字大小
cb.setFontAndSize(bfChinese,32);
//在固定位置居中显示文字,(0,0)坐标对应了页面的左下角
cb.showTextAligned(PdfContentByte.ALIGN_CENTER, "时间公报", 300, 500, 0);
cb.endText();
创建表格
//生成3列的表格
Table table = new Table(3);
//向表格中添加内容
table.addCell(new Cell().add(new Paragraph("11")));
table.addCell(new Cell().add(new Paragraph("12")));
table.addCell(new Cell().add(new Paragraph("13")));
//第二行,如果第二行添加的单元格不够3列,则不会显示该行。
table.addCell(new Cell().add(new Paragraph("21")));
table.addCell(new Cell().add(new Paragraph("22")));
table.addCell(new Cell().add(new Paragraph("23")));
document.add(table);
猜你喜欢
- 2024-10-11 让我们了解HTTP(3) 现在基于http3有哪些应用
- 2024-10-11 如何在Java中将DOCX转换为PDF java实现docx转pdf
- 2024-10-11 字节跳动《Python项目开发实战》高清版 PDF 开放下载,简直神了
- 2024-10-11 牛!字节跳动《算法中文手册》火了,完整版 PDF 开放下载!
- 2024-10-11 字节跳动把python入门知识点整理成手册了,高清PDF开放下载
- 2024-10-11 字节大佬熬夜肝出的《Python知识手册》,高清pdf开放下载
- 2024-10-11 看了这份《算法中文手册》笔记,就再也不怕字节了
- 2024-10-11 字节跳动《算法中文手册》火了,完整版 PDF 开放下载!
- 2024-10-11 字节跳动《Python项目开发实战》高清版 PDF 开放下载
- 2024-10-11 Linux 内核 | 网络流量限速方案大 PK
你 发表评论:
欢迎- 最近发表
-
- 在 Spring Boot 项目中使用 activiti
- 开箱即用-activiti流程引擎(active 流程引擎)
- 在springBoot项目中整合使用activiti
- activiti中的网关是干什么的?(activiti包含网关)
- SpringBoot集成工作流Activiti(完整源码和配套文档)
- Activiti工作流介绍及使用(activiti工作流会签)
- SpringBoot集成工作流Activiti(实际项目演示)
- activiti工作流引擎(activiti工作流引擎怎么用)
- 工作流Activiti初体验及在数据库中生成的表
- Activiti工作流浅析(activiti6.0工作流引擎深度解析)
- 标签列表
-
- oraclesql优化 (66)
- 类的加载机制 (75)
- feignclient (62)
- 一致性hash算法 (71)
- dockfile (66)
- 锁机制 (57)
- javaresponse (60)
- 查看hive版本 (59)
- phpworkerman (57)
- spark算子 (58)
- vue双向绑定的原理 (68)
- springbootget请求 (58)
- docker网络三种模式 (67)
- spring控制反转 (71)
- data:image/jpeg (69)
- base64 (69)
- java分页 (64)
- kibanadocker (60)
- qabstracttablemodel (62)
- java生成pdf文件 (69)
- deletelater (62)
- com.aspose.words (58)
- android.mk (62)
- qopengl (73)
- epoch_millis (61)
本文暂时没有评论,来添加一个吧(●'◡'●)