itext5 实现 pdf定制显示

别的大神的,记录一下,原文链接找不到了。
package awsa.oss.utils;

import awsa.oss.entity.TabProjects;
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.itextpdf.text.pdf.draw.DottedLineSeparator;
import com.itextpdf.text.pdf.draw.LineSeparator;

import java.io.File;
import java.io.FileOutputStream;
import java.util.ArrayList;


public class PdfReport {



	public  void main(Object list) throws Exception {
		try {
			// 1.新建document对象
			Document document = new Document(PageSize.A3);// 建立一个Document对象

			// 2.建立一个书写器(Writer)与document对象关联
			File file = new File("D:\\pdfReport\\PDFA199.pdf");
			file.createNewFile();
			PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream(file));
//            writer.setPageEvent(new Watermark("HELLO ITEXTPDF"));// 水印
//			writer.setPageEvent(new MyHeaderFooter());// 页眉/页脚

			// 3.打开文档
			document.open();
			document.addTitle("Title@PDF-Java");// 标题
			document.addAuthor("Author@awsa");// 作者
			document.addSubject("Subject@iText pdf sample");// 主题
			document.addKeywords("Keywords@iTextpdf");// 关键字
			document.addCreator("Creator@awsa");// 创建者

			// 4.向文档中添加内容
			new PdfReport().generatePDF(document,list);

			// 5.关闭文档
			document.close();
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

	// 定义全局的字体静态变量
	private static Font titlefont;
	private static Font headfont;
	private static Font keyfont;
	private static Font textfont;
	// 最大宽度
	private static int maxWidth = 520;
	// 静态代码块
	static {
		try {
			// 不同字体(这里定义为同一种字体:包含不同字号、不同style)
			BaseFont bfChinese = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H", BaseFont.NOT_EMBEDDED);
			titlefont = new Font(bfChinese, 16, Font.BOLD);
			headfont = new Font(bfChinese, 14, Font.BOLD);
			keyfont = new Font(bfChinese, 10, Font.BOLD);
			textfont = new Font(bfChinese, 10, Font.NORMAL);

		} catch (Exception e) {
			e.printStackTrace();
		}
	}

	// 生成PDF文件
	public void generatePDF(Document document,Object list) throws Exception {

		// 段落
		Paragraph paragraph = new Paragraph("XXX分包领用材料明细!", titlefont);
		paragraph.setAlignment(1); //设置文字居中 0靠左   1,居中     2,靠右
		paragraph.setIndentationLeft(12); //设置左缩进
		paragraph.setIndentationRight(12); //设置右缩进
		paragraph.setFirstLineIndent(24); //设置首行缩进
		paragraph.setLeading(20f); //行间距
		paragraph.setSpacingBefore(5f); //设置段落上空白
		paragraph.setSpacingAfter(10f); //设置段落下空白

		// 直线
		Paragraph p1 = new Paragraph();
		p1.add(new Chunk(new LineSeparator()));

		// 点线
		Paragraph p2 = new Paragraph();
		p2.add(new Chunk(new DottedLineSeparator()));

		// 超链接
		Anchor anchor = new Anchor("AWSA CLOUD");
		anchor.setReference("www.awsacloud.com");

		// 定位
		Anchor gotoP = new Anchor("goto");
		gotoP.setReference("#top");

		// 添加图片
		Image image = Image.getInstance("https://img-blog.csdn.net/20180801174617455?watermark/2/text/aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl8zNzg0ODcxMA==/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70");
		image.setAlignment(Image.ALIGN_CENTER);
		image.scalePercent(40); //依照比例缩放

		// 表格
		/**
		 * 附表1-11-1 分包领用材料明细
		 */
		PdfPTable table = createTable(new float[] { 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120 });
//		table.addCell(createCell("美好的一天", headfont, Element.ALIGN_LEFT, 6, false));
		table.addCell(createCell("序号", keyfont, Element.ALIGN_CENTER));
		table.addCell(createCell("领用时间", keyfont, Element.ALIGN_CENTER));
		table.addCell(createCell("材料名称", keyfont, Element.ALIGN_CENTER));
		table.addCell(createCell("规格型号", keyfont, Element.ALIGN_CENTER));
		table.addCell(createCell("单位", keyfont, Element.ALIGN_CENTER));
		table.addCell(createCell("数量", keyfont, Element.ALIGN_CENTER));
		table.addCell(createCell("使用部位", keyfont, Element.ALIGN_CENTER));
		table.addCell(createCell("领用单位", keyfont, Element.ALIGN_CENTER));
		table.addCell(createCell("出入库单号", keyfont, Element.ALIGN_CENTER));
		table.addCell(createCell("单价", keyfont, Element.ALIGN_CENTER));
		table.addCell(createCell("合价", keyfont, Element.ALIGN_CENTER));
		table.addCell(createCell("备注", keyfont, Element.ALIGN_CENTER));

		Integer totalQuantity = 0;
		ArrayList<TabProjects> testList = new ArrayList<>();


		testList = (ArrayList<TabProjects>) list;
		TabProjects tabProject = new TabProjects();
		tabProject.setName("111");
		tabProject.setCorpId(15615);
		tabProject.setId(11);
		testList.add(tabProject);
		System.out.println(testList);
		//插入数据
		for (TabProjects tabProjects:testList) {
			table.addCell(createCell(String.valueOf(tabProjects.getId()), textfont));
			table.addCell(createCell(String.valueOf(tabProjects.getCorpId()), textfont));
			table.addCell(createCell(tabProjects.getProjectCode(), textfont));
			table.addCell(createCell(tabProjects.getName(), textfont));
			table.addCell(createCell(tabProjects.getContractorCorpName(), textfont));
			table.addCell(createCell("吃晚饭", textfont));
			table.addCell(createCell(String.valueOf(tabProjects.getId()), textfont));
			table.addCell(createCell(String.valueOf(tabProjects.getCorpId()), textfont));
			table.addCell(createCell(tabProjects.getProjectCode(), textfont));
			table.addCell(createCell(tabProjects.getName(), textfont));
			table.addCell(createCell(tabProjects.getContractorCorpName(), textfont));
			table.addCell(createCell("吃晚饭", textfont));
			totalQuantity ++;
		}
//		for (int i = 0; i < 5; i++) {
//			table.addCell(createCell("起床", textfont));
//			table.addCell(createCell("吃午饭", textfont));
//			table.addCell(createCell("午休", textfont));
//			table.addCell(createCell("下午茶", textfont));
//			table.addCell(createCell("回家", textfont));
//			table.addCell(createCell("吃晚饭", textfont));
//			totalQuantity ++;
//		}
		table.addCell(createCell("总计", keyfont));
		table.addCell(createCell("", textfont));
		table.addCell(createCell("", textfont));
		table.addCell(createCell("", textfont));
		table.addCell(createCell(String.valueOf(totalQuantity) + "件事", textfont));
		table.addCell(createCell("", textfont));

		document.add(paragraph);
		document.add(anchor);
		document.add(p2);
		document.add(gotoP);
		document.add(p1);
		document.add(table);
//		document.add(image);
	}


/**------------------------创建表格单元格的方法start----------------------------*/
	/**
	 * 创建单元格(指定字体)
	 * @param value
	 * @param font
	 * @return
	 */
	public PdfPCell createCell(String value, Font font) {
		PdfPCell cell = new PdfPCell();
		cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
		cell.setHorizontalAlignment(Element.ALIGN_CENTER);
		cell.setPhrase(new Phrase(value, font));
		return cell;
	}
	/**
	 * 创建单元格(指定字体、水平..)
	 * @param value
	 * @param font
	 * @param align
	 * @return
	 */
	public PdfPCell createCell(String value, Font font, int align) {
		PdfPCell cell = new PdfPCell();
		cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
		cell.setHorizontalAlignment(align);
		cell.setPhrase(new Phrase(value, font));
		return cell;
	}
	/**
	 * 创建单元格(指定字体、水平居..、单元格跨x列合并)
	 * @param value
	 * @param font
	 * @param align
	 * @param colspan
	 * @return
	 */
	public PdfPCell createCell(String value, Font font, int align, int colspan) {
		PdfPCell cell = new PdfPCell();
		cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
		cell.setHorizontalAlignment(align);
		cell.setColspan(colspan);
		cell.setPhrase(new Phrase(value, font));
		return cell;
	}
	/**
	 * 创建单元格(指定字体、水平居..、单元格跨x列合并、设置单元格内边距)
	 * @param value
	 * @param font
	 * @param align
	 * @param colspan
	 * @param boderFlag
	 * @return
	 */
	public PdfPCell createCell(String value, Font font, int align, int colspan, boolean boderFlag) {
		PdfPCell cell = new PdfPCell();
		cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
		cell.setHorizontalAlignment(align);
		cell.setColspan(colspan);
		cell.setPhrase(new Phrase(value, font));
		cell.setPadding(3.0f);
		if (!boderFlag) {
			cell.setBorder(0);
			cell.setPaddingTop(15.0f);
			cell.setPaddingBottom(8.0f);
		} else if (boderFlag) {
			cell.setBorder(0);
			cell.setPaddingTop(0.0f);
			cell.setPaddingBottom(15.0f);
		}
		return cell;
	}
	/**
	 * 创建单元格(指定字体、水平..、边框宽度:0表示无边框、内边距)
	 * @param value
	 * @param font
	 * @param align
	 * @param borderWidth
	 * @param paddingSize
	 * @param flag
	 * @return
	 */
	public PdfPCell createCell(String value, Font font, int align, float[] borderWidth, float[] paddingSize, boolean flag) {
		PdfPCell cell = new PdfPCell();
		cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
		cell.setHorizontalAlignment(align);
		cell.setPhrase(new Phrase(value, font));
		cell.setBorderWidthLeft(borderWidth[0]);
		cell.setBorderWidthRight(borderWidth[1]);
		cell.setBorderWidthTop(borderWidth[2]);
		cell.setBorderWidthBottom(borderWidth[3]);
		cell.setPaddingTop(paddingSize[0]);
		cell.setPaddingBottom(paddingSize[1]);
		if (flag) {
			cell.setColspan(2);
		}
		return cell;
	}
/**------------------------创建表格单元格的方法end----------------------------*/


/**--------------------------创建表格的方法start------------------- ---------*/
	/**
	 * 创建默认列宽,指定列数、水平(居中、右、左)的表格
	 * @param colNumber
	 * @param align
	 * @return
	 */
	public PdfPTable createTable(int colNumber, int align) {
		PdfPTable table = new PdfPTable(colNumber);
		try {
			table.setTotalWidth(maxWidth);
			table.setLockedWidth(true);
			table.setHorizontalAlignment(align);
			table.getDefaultCell().setBorder(1);
		} catch (Exception e) {
			e.printStackTrace();
		}
		return table;
	}
	/**
	 * 创建指定列宽、列数的表格
	 * @param widths
	 * @return
	 */
	public PdfPTable createTable(float[] widths) {
		PdfPTable table = new PdfPTable(widths);
		try {
			table.setTotalWidth(maxWidth);
			table.setLockedWidth(true);
			table.setHorizontalAlignment(Element.ALIGN_CENTER);
			table.getDefaultCell().setBorder(1);
		} catch (Exception e) {
			e.printStackTrace();
		}
		return table;
	}
	/**
	 * 创建空白的表格
	 * @return
	 */
	public PdfPTable createBlankTable() {
		PdfPTable table = new PdfPTable(1);
		table.getDefaultCell().setBorder(0);
		table.addCell(createCell("", keyfont));
		table.setSpacingAfter(20.0f);
		table.setSpacingBefore(20.0f);
		return table;
	}
/**--------------------------创建表格的方法end------------------- ---------*/


}

封装方法的链接
参考方法

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值