java生成txt表格_Java生成PDF文档(表格)

本文介绍如何使用Java的iText库生成PDF文档,并重点展示了如何创建带有表格、页眉和页脚的PDF。通过PdfUtils类创建表格,设置字体样式,以及在每个页面结束时自定义页眉和页脚。
摘要由CSDN通过智能技术生成

Java生成PDF文档(表格)

package org.jeecg.modules.esi.utils;

import com.itextpdf.text.*;

import com.itextpdf.text.pdf.*;

import java.io.File;

import java.io.FileNotFoundException;

import java.io.FileOutputStream;

import java.io.IOException;

import java.util.Iterator;

import java.util.List;

/**

* @ClassName PdfUtils

* @Deacription TODO

* @Author alex

* @Date 2020/2/26 15:19

* @Version 1.0

**/

public class PdfUtils {

/**

* @Author alex

* @Description //TODO 创建简单表格

* @Date 2020/2/27 14:19

* @Param [d :, pName 表格标题, cellWidth :表格列宽, col:表格列头, list :需要的数据]

* @return void

**/

public static void createPdf(Document d, String pName, float[] cellWidth, String[] col, List> list) {

try {

/** pdf文档中中文字体的设置,注意一定要添加iTextAsian.jar包 */

Font FontChinese10 = createChineseFont(10,Font.NORMAL,BaseColor.BLACK);//加入document:

Font FontChinese6 = createChineseFont(6,Font.NORMAL,BaseColor.BLACK);//加入document:

/** 向文档中添加内容,创建段落对象 */

Paragraph p1 = createParagraph(pName,FontChinese10);

p1.setAlignment(Paragraph.ALIGN_CENTER);

p1.setSpacingAfter(10);//设置段落后间距

d.add(p1);// Paragraph添加文本

/** 创建表格对象(包含行列矩阵的表格) */

PdfPTable t = createPdfPTable(cellWidth.length);// 设置总列宽queryCollegePartner

t.setTotalWidth(cellWidth);

t.setPaddingTop(50);

if (col == null || col.length < 1) {

throw new Exception("列头为空");

}

for (String c : col) {

PdfPCell c1 = createPdfPCell(createPhrase(c,FontChinese6));

c1.setBackgroundColor(new BaseColor(180, 202, 220));//淡蓝色

t.addCell(c1);

}

if (list != null && list.size() > 0) {

for (int i = 0; i < list.size(); i++) {

Iterator it = list.get(i).iterator();

while (it.hasNext()) {

t.addCell(createPdfPCell(createPhrase(it.next(), FontChinese6)));

}

}

}

d.add(t);

d.newPage();

} catch (Exception e) {

System.err.println(e.getMessage());

e.printStackTrace();

}

}

/**

* @return com.itextpdf.text.Font

* @Author cl

* @Description //TODO 创造字体格式

* @Date 2020/2/27 13:21

* @Param [fontname , size 字体大小, style:字体风格, color:颜色]

**/

public static Font createFont(String fontname, float size, int style, BaseColor color) {

Font font = FontFactory.getFont(fontname, size, style, color);

return font;

}

/**

* 功能: 返回支持中文的字体

*

* @param size 字体大小

* @param style 字体风格

* @param color 字体 颜色

* @return 字体格式

*/

public static Font createChineseFont(float size, int style, BaseColor color) {

BaseFont bfChinese = null;

try {

bfChinese = BaseFont.createFont("STSong-Light",

"UniGB-UCS2-H", BaseFont.NOT_EMBEDDED);

} catch (DocumentException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

}

return new Font(bfChinese, size, style, color);

}

/**

* 功能:向PDF文档中添加段落

* @param text 内容

* @param font 内容对应的字体

* @return Paraggraph 指定字体格式的内容

*/

public static Paragraph createParagraph(String text,Font font) {

Paragraph paragraph = new Paragraph(text,font);

return paragraph;

}

/**

* 创建表格

* @param colnum 列数

* @return 列数为colnum的表格

*/

public static PdfPTable createPdfPTable(int colnum){

PdfPTable table=new PdfPTable(colnum);

return table;

}

/**

* 创建表格的单元格

* @param p 短语

* @return 单元格

*/

public static PdfPCell createPdfPCell(Phrase p){

PdfPCell c = new PdfPCell(p);

return c;

}

/**

* 功能:向PDF文档中添加短语

* @param text 内容

* @param font 内容对应的字体

* @return phrase 指定字体格式的内容

*/

public static Phrase createPhrase(String text,Font font) {

Phrase phrase = new Phrase(text,font);

return phrase;

}

/**

* 功能:创建导出数据的目标文档

* @param fileName 存储文件的临时路径

*/

public static Document createDocument(String fileName) {

Document document=null;

File file = new File(fileName);

File dir = file.getParentFile();

//如果文件夹不存在则创建

if (!dir .exists())

dir .mkdirs();

FileOutputStream out = null;

PdfWriter pdfWriter=null;

document = new Document(PageSize.A4,50,50,50,50);

try {

if (!file .exists())//不存在文件则创建文件

file.createNewFile();

out = new FileOutputStream(file);

pdfWriter= PdfWriter.getInstance(document, out);

} catch (FileNotFoundException e) {

e.printStackTrace();

} catch (DocumentException e) {

e.printStackTrace();

}catch (IOException e){

e.printStackTrace();

}

// 打开文档准备写入内容

pdfWriter.setPageEvent(new CreateHeaderFooter());

document.open();

return document;

}

/**

* 最后关闭PDF文档

*/

public static void closeDocument(Document document) {

if(document != null) {

document.close();

}

}

}

生成后类似于这样

2f31167bc86d911ce56b1ead200dc466.png

如果要实现页眉和页码

需要继承PdfPageEventHelper 重写onEndPage 方法在一页结束后执行

package org.jeecg.modules.esi.utils;

import com.itextpdf.text.BaseColor;

import com.itextpdf.text.Document;

import com.itextpdf.text.pdf.BaseFont;

import com.itextpdf.text.pdf.PdfContentByte;

import com.itextpdf.text.pdf.PdfPageEventHelper;

import com.itextpdf.text.pdf.PdfWriter;

/**

* @ClassName CreateHeaderFooter

* @Deacription TODO

* @Author alex

* @Date 2020/2/27 15:56

* @Version 1.0

**/

public class CreateHeaderFooter extends PdfPageEventHelper {

@Override

public void onEndPage(PdfWriter writer, Document document) {

PdfContentByte cb = writer.getDirectContent();

cb.saveState();

//Header

float x = document.top(-20);

//Footer

float y = document.bottom(-20);

//生成下划线,使用空格占位

cb.setLineWidth(1);

cb.moveTo(document.left(),x);

cb.lineTo(document.right(),x);

cb.setColorStroke(BaseColor.BLACK);

cb.stroke();

cb.beginText();

BaseFont bf = null;

try {

bf = BaseFont.createFont(BaseFont.HELVETICA, BaseFont.WINANSI, BaseFont.EMBEDDED);

} catch (Exception e) {

e.printStackTrace();

}

cb.setFontAndSize(bf, 10);

//左

// cb.showTextAligned(PdfContentByte.ALIGN_LEFT,

// "H-Left",

// document.left(), x, 0);

//中

// cb.showTextAligned(PdfContentByte.ALIGN_CENTER,

// writer.getPageNumber()+ " page",

// (document.right() + document.left())/2,

// x, 0);

//右

// cb.showTextAligned(PdfContentByte.ALIGN_RIGHT,

// "H-Right",

// document.right(), x, 0);

//左

// cb.showTextAligned(PdfContentByte.ALIGN_LEFT,

// "F-Left",

// document.left(), y, 0);

//中

cb.showTextAligned(PdfContentByte.ALIGN_CENTER,

"- "+writer.getPageNumber()+" -",

(document.right() + document.left())/2,

y, 0);

//右

// cb.showTextAligned(PdfContentByte.ALIGN_RIGHT,

// "F-Right",

// document.right(), y, 0);

cb.endText();

cb.restoreState();

super.onStartPage(writer,document);

}

}

效果如图

?i=20200306142604395.png

标签:Java,text,return,文档,cb,PDF,import,document,public

来源: https://blog.csdn.net/zrr_520/article/details/104695231

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值