IText 生成pdf,处理table cell列跨页缺失的问题
/**
* 创建(table)PDF,处理cell 跨页处理
* @param savePath(需要保存的pdf路径)
* @param pmbs (数据库查询的数据)
* @return
*http://www.cnblogs.com/qgc88/
*/
private String createPDFTable(String savePath, LinkedList<ProjectManageBase> pmbs){
try{
Document document = new Document();
// String separator = System.getProperties().getProperty("file.separator");
FileOutputStream out = new FileOutputStream(savePath);
PdfWriter.getInstance(document, out);
document.open();
PdfPTable table = new PdfPTable(7);
table.setWidthPercentage(100);
table.getDefaultCell().setPaddingLeft(1);
table.getDefaultCell().setPaddingRight(1);
table.getDefaultCell().setPaddingTop(2);
table.getDefaultCell().setPaddingBottom(2);
table.getDefaultCell().setVerticalAlignment(Element.ALIGN_CENTER);
// cell 跨页处理:
table.setSplitLate(false);
table.setSplitRows(true);
PdfPCell cell = new PdfPCell();
cell.setColspan(7);
cell.setUseAscender(true);
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_TOP);
// 标题居中处理:
BaseFont fontChinese = null;
try {
fontChinese = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H",
BaseFont.NOT_EMBEDDED);// 设置中文字体
} catch (Exception e) {
e.printStackTrace();
}
Font chinese = new Font(fontChinese, 18, Font.BOLD);
Paragraph title = new Paragraph("组评审结果清单", chinese);
title.setAlignment(Element.ALIGN_CENTER);
cell.addElement(title);
cell.setBorderWidth(0);
table.addCell(cell);
//列的标题
Font chinese_cellTitle = new Font(fontChinese, 12, Font.BOLD);
for (int k = 0; k < 7; k++) {
String celCount="";
if(k==0){
celCount="申报项目";
}else if(k==1){
celCount="申报单位";
}else if(k==2){
celCount="申报经费\n(万元)";
}else if(k==3){
celCount="综合评估\n分数";
}else if(k==4){
celCount="综合评估\n名次";
}else if(k==5){
celCount="立项等级";
}else if(k==6){
celCount="建议经费\n(万元)";
}
Paragraph count = new Paragraph(celCount, chinese_cellTitle);//支持中文
count.setAlignment(Element.ALIGN_CENTER);
cell.setPhrase(count);
//cell.addElement(count)
table.addCell(count);
}
Font chinese2 = new Font(fontChinese, 12, Font.NORMAL);
for (int j = 0; j <pmbs.size(); j++) {//数据(List)
for (int k = 0; k < 7; k++) {//内容的列
String celCount="";
if(k==0){
celCount=pmbs.get(j).getProjectName();
}else if(k==1){
celCount=pmbs.get(j).getSuoshudanwei();
}else if(k==2){
celCount=pmbs.get(j).getChiefAuditNames();
}else if(k==3){
celCount=pmbs.get(j).getCreateYear();
}else if(k==4){
celCount=pmbs.get(j).getCreUserId();
}else if(k==5){
celCount=pmbs.get(j).getShenhejieguo();
}else if(k==6){
celCount=pmbs.get(j).getBeizhu();
}
Phrase count = new Phrase(celCount, chinese2);//支持中文
// count.setAlignment(Element.ALIGN_CENTER);
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.addElement(count);
table.addCell(count);
}
}
document.add(table);
SimpleDateFormat sdf=new SimpleDateFormat("yyyy年MM月dd日");
Paragraph date = new Paragraph(sdf.format(new Date()),chinese2);
date.setAlignment(Element.ALIGN_RIGHT);
document.add(date);
document.close();
System.gc();
return "success";
} catch (Exception e) {
e.printStackTrace();
return "error";
}
}
IText 生成pdf,处理table cell列跨页缺失的问题的更多相关文章
- Java Itext 生成PDF文件
利用Java Itext生成PDF文件并导出,实现效果如下: PDFUtil.java package com.jeeplus.modules.order.util; import java.io.O ...
- iText生成PDF 格式报表
1.导包 <dependency> <groupId>com.lowagie</groupId> <artifactId>itext</artif ...
- 在linux环境下使用itext生成pdf
转载请注明出处 https://www.cnblogs.com/majianming/p/9537173.html 项目中需要对订单生成pdf文件,在不断的尝试之后,终于生成了比较满意的pdf文档. ...
- 用itext生成PDF报错:Font 'STSong-Light1' with 'UniGB-UCS2-H' is not recognized.
用itext生成PDF报错,加上try catch捕获到异常是 BaseFont bFont = BaseFont.createFont("STSong-Light1", &quo ...
- 【PDF】java使用Itext生成pdf文档--详解
[API接口] 一.Itext简介 API地址:javadoc/index.html:如 D:/MyJAR/原JAR包/PDF/itext-5.5.3/itextpdf-5.5.3-javadoc/ ...
- java使用iText生成pdf表格
转载地址:http://www.open-open.com/code/view/1424011530749 首先需要你自己下载itext相关的jar包并添加引用,或者在maven中添加如下引用配置: ...
- 【Java】使用iText生成PDF文件
iText介绍 iText是著名的开放源码的站点sourceforge一个项目,是用于生成PDF文档的一个java类库.通过iText不仅可以生成PDF或rtf的文档,而且可以将XML.Html文件转 ...
- 使用 Itext 生成PDF
一.生成PDF,所需jar包(itext-2.0.8.jar,iTextAsian.jar) 在springboot中只需要引入依赖即可,依赖代码如下: <dependency> < ...
- Itext生成pdf文件
来源:https://my.oschina.net/lujianing/blog/894365 1.背景 在某些业务场景中,需要提供相关的电子凭证,比如网银/支付宝中转账的电子回单,签约的电子合同等. ...
随机推荐
- CCF|学生排队|Java
import java.util.*; public class Main { public static void main(String[] args) { Scanner in = new Sc ...
- iOS 从相册中拿到 图片名 ,截取后缀,图片名
//从路径中获得完整的文件名 (带后缀) 对从相册中取出的图片,视频都有效. NSString *fileName = [filePath lastPathComponent]; //获得文件名 (不 ...
- 最优雅退出 Android 应用程序的 6 种方式
一.容器式 建立一个全局容器,把所有的Activity存储起来,退出时循环遍历finish所有Activity import java.util.ArrayList; import java.util ...
- 《Python基础教程》 读书笔记 第五章(下)循环语句
5.5.1while循环 x=1 while x<=100: print x x+=1 确保用户输入了名字: name="" while not name: name=raw ...
- docker新手入门(基本命令以及介绍)
Docker 的核心内容 镜像 (Image) 容器 (Container) 仓库 (Repository) Registry 用来保存用户构建的镜像 docker的开始使用: 1. docker ...
- 下拉列表事件 Dropdown iview
<Dropdown @on-click="export"> <Button icon='md-log-out'> 000l <Icon type=&q ...
- docker 容器的网络
容器的网络模式 bridge -net=bridge 默认网络.docker启动后创建一个docker0网桥,默认创建的容器也添加到这个网桥 [root@localhost ~]# ip a 1: l ...
- js将时间戳装换成日期格式
13位时间戳改为yyyy-MM-dd HH-mm-ss 格式 目标时间戳:1516324500000 formatDateTime (unix) { // 转换时间戳 var date = new D ...
- Bug的分类和管理流程
1.按照严重程度划分 定义:是指Bug对软件质量的破坏程度,即BUG的存在将对软件的功能和性能产生怎样的影响 分类:系统崩溃.严重.一般.次要.建议 2.按优先级划分 定义:表示处理和修正软件缺陷的现 ...
- python基础一 day9 函数升阶(1)
函数 可读性强 复用性强def 函数名(): 函数体 return 返回值所有的函数 只定义不调用就一定不执行 先定义后调用 函数名() #不接收返回值返回值 = 函数名() #接收返回值 返回值 没 ...