如何运用Java组件itext生成pdf

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何运用Java组件itext生成pdf相关的知识,希望对你有一定的参考价值。

第一步:下载  iText5.5.6的压缩文件,解压得到核心jar包itextpdf-5.5.6.jar

        下载  extrajars-2.3.zip ,解压后,得到支持中文的itext.asian.jar 

第二步:项目Build Path添加刚刚的两个jar包

第三步:开始写代码

import java.io.FileOutputStream;
import com.itextpdf.text.Document;
import com.itextpdf.text.Font;
import com.itextpdf.text.Paragraph;
import com.itextpdf.text.pdf.BaseFont;
import com.itextpdf.text.pdf.PdfWriter;
 
public class PDFDemo 
    // <a href="https://www.baidu.com/s?wd=main%E5%87%BD%E6%95%B0&tn=44039180_cpr&fenlei=mv6quAkxTZn0IZRqIHckPjm4nH00T1d9nH0vmHKBPj-9my7BnvP-0ZwV5Hcvrjm3rH6sPfKWUMw85HfYnjn4nH6sgvPsT6KdThsqpZwYTjCEQLGCpyw9Uz4Bmy-bIi4WUvYETgN-TLwGUv3EnHnsPjmLn1fkPWR1nHb1P1D1rf" target="_blank" class="baidu-highlight">main函数</a>抛出异常,当然也可以try catch进行处理
    public static void main(String[] args) throws Exception 
        // ---------------第一阶段准备-------------------------
        // 创建一个<a href="https://www.baidu.com/s?wd=Document%E5%AF%B9%E8%B1%A1&tn=44039180_cpr&fenlei=mv6quAkxTZn0IZRqIHckPjm4nH00T1d9nH0vmHKBPj-9my7BnvP-0ZwV5Hcvrjm3rH6sPfKWUMw85HfYnjn4nH6sgvPsT6KdThsqpZwYTjCEQLGCpyw9Uz4Bmy-bIi4WUvYETgN-TLwGUv3EnHnsPjmLn1fkPWR1nHb1P1D1rf" target="_blank" class="baidu-highlight">Document对象</a>
        Document document = new Document();
        // 创建 PDF写入器,通过PDF写入器将文档对象写入磁盘 (第一个参数:文档对象,第二个参数,输出流)
        PdfWriter pdfWriter = PdfWriter.getInstance(document, new FileOutputStream("c:\\\\abcd.pdf"));
        // 打开Document文档
        document.open();
        // 向Document文档中添加内容
        // ---------------第二阶段写入-------------------------
        // 新建段落第一段
        Paragraph p = new Paragraph();
        p.add("Hello World Happy");
 
        // 设置中文字体
        BaseFont baseFont = BaseFont.createFont("STSongStd-Light", "UniGB-UCS2-H", true);
        Font font = new Font(baseFont);
        // 新建段落第二段,支持中文
        Paragraph p2 = new Paragraph();
        p2.setFont(font);
        p2.add("非常风云");
        document.add(p);
        document.add(p2);
        // ---------------第三阶段收尾-------------------------
        // 添加完毕,关闭文档
        document.close();
    

效果展示

参考技术A 用iText生成PDF文档需要5个步骤:
  ①建立com.lowagie.text.Document对象的实例。
  Document document = new Document();
  ②建立一个书写器(Writer)与document对象关联,通过书写器(Writer)可以将文档写入到磁盘中。
  PDFWriter.getInstance(document, new FileOutputStream("Helloworld.PDF"));
  ③打开文档。
  document.open();
  ④向文档中添加内容。
  document.add(new Paragraph("Hello World"));
  ⑤关闭文档。
  document.close();
  通过上面的5个步骤,就能产生一个Helloworld.PDF的文件,文件内容为"Hello World"。本回答被提问者和网友采纳

java生成PDF,并下载到本地

1、首先要写一个PDF工具类,以及相关工具 
2、PDF所需jar包 
iText是一种生成PDF报表的Java组件 
freemarker是基于模板来生成文本输出

    <dependency>
        <groupId>com.itextpdf</groupId>
        <artifactId>itext-asian</artifactId>
        <version>5.2.0</version>
    </dependency>

    <dependency>
        <groupId>com.lowagie</groupId>
        <artifactId>itext</artifactId>
        <version>2.1.7</version>
    </dependency>

    <dependency>
        <groupId>org.freemarker</groupId>
        <artifactId>freemarker</artifactId>
        <version>2.3.23</version>
    </dependency>

 

3、需要使用Adobe Acrobat pro软件把要生成的模板转换为PDF格式 
打开Adobe Acrobat pro,打开模板,选择 |—— 准备表单 ,它会自动检测并命名表单域,然后保存为pdf格式即可

PDF工具类

public class PDFTemplet {
    private String templatePdfPath;
    private String targetPdfpath;
    private ServiceOrder order ;

    public PDFTemplet() {
    }

public void PDFTemplet(File file,String basePath)thows Exception{
/*模板路径*/
      PdfReader reader = new PdfReader(templatePdfPath);
ByteArrayOutputStream bos=new ByteArrayOutputStream();
/* 读取*/
PdfStamper pdfStamper= new PdfStamper(reader,bos);
/*使用中文字体*/
BaseFont baseFont=BaseFont.createFont(basePath+"WEB-INF/static/SIMHEI.TTF",BaseFont.IDENTITY_H,BaseFont.EMBEDDED);
ArrayList<BaseFont> fontList=new ArrayList<>();
fontList.add(baseFont);
AcroFields  s=pdfStamper.getAcroFields();
s.setSubstitutionFonts(fontList);

/*需要注意的是  setField的name和命名的表单域名字要一致*/
s.setField("enterpriseName",order.getEnerpriseName());
 s.setField("incubatorName",order.getIncubatorName());
        s.setField("recommend","");//孵化器推荐
        s.setField("contacts",order.getContacts());
        s.setField("phone",order.getPhone());
        s.setField("email",order.getEmail());
        s.setField("category ","");//服务类别
        s.setField("demand",order.getDemand());
        SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss ");
        String createTime = formatter.format(order.getCreateTime());
        String updateTime = formatter.format(order.getUpdateTime());
        s.setField("createTime",createTime);
        s.setField("updateTime", updateTime);
ps.setFormFlattenning(true);
ps.close();
FileOutputStream fileSteam =new FileOutPutStream(file);
fos.write(bos.toByteArray);
fos.close();}


}

 

调用方法

 @RequestMapping(value ="downloadPdf", method = RequestMethod.GET)
    public String downloadPDF(@PathVariable("id") Integer id,HttpServletRequest request) throws Exception {
        ServiceOrder serviceOrder = serviceOrderService.getById(id);
        PDFTemplet pdfTT = new PDFTemplet();
        pdfTT.setOrder(serviceOrder);
        String basePath = request.getSession().getServletContext().getRealPath("/");
        String template = request.getSession().getServletContext().getRealPath("/") + "WEB-INF/static/excel/confirmation.pdf";

        pdfTT.setTemplatePdfPath(template);
        pdfTT.setTargetPdfpath("D:/企业服务确认单.pdf");
        pdfTT.setOrder(serviceOrder);

        File file = new File("D:/企业服务确认单.pdf");
        file.createNewFile();
        pdfTT.templetTicket(file,basePath);
        return "/master/serviceOrder/orderList";
    }




以上是关于如何运用Java组件itext生成pdf的主要内容,如果未能解决你的问题,请参考以下文章

如何运用Java组件itext生成pdf

如何运用Java组件itext生成pdf

如何运用Java组件itext生成pdf

如何运用Java组件itext生成pdf

如何运用Java组件itext生成pdf

java 已经获取pdf代码,如何把他pdf文件保存到本机 要求用输出流做