/**
     * 创建(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列跨页缺失的问题的更多相关文章

  1. Java Itext 生成PDF文件

    利用Java Itext生成PDF文件并导出,实现效果如下: PDFUtil.java package com.jeeplus.modules.order.util; import java.io.O ...

  2. iText生成PDF 格式报表

    1.导包 <dependency> <groupId>com.lowagie</groupId> <artifactId>itext</artif ...

  3. 在linux环境下使用itext生成pdf

    转载请注明出处 https://www.cnblogs.com/majianming/p/9537173.html 项目中需要对订单生成pdf文件,在不断的尝试之后,终于生成了比较满意的pdf文档. ...

  4. 用itext生成PDF报错:Font 'STSong-Light1' with 'UniGB-UCS2-H' is not recognized.

    用itext生成PDF报错,加上try catch捕获到异常是 BaseFont bFont = BaseFont.createFont("STSong-Light1", &quo ...

  5. 【PDF】java使用Itext生成pdf文档--详解

    [API接口]  一.Itext简介 API地址:javadoc/index.html:如 D:/MyJAR/原JAR包/PDF/itext-5.5.3/itextpdf-5.5.3-javadoc/ ...

  6. java使用iText生成pdf表格

    转载地址:http://www.open-open.com/code/view/1424011530749 首先需要你自己下载itext相关的jar包并添加引用,或者在maven中添加如下引用配置: ...

  7. 【Java】使用iText生成PDF文件

    iText介绍 iText是著名的开放源码的站点sourceforge一个项目,是用于生成PDF文档的一个java类库.通过iText不仅可以生成PDF或rtf的文档,而且可以将XML.Html文件转 ...

  8. 使用 Itext 生成PDF

    一.生成PDF,所需jar包(itext-2.0.8.jar,iTextAsian.jar) 在springboot中只需要引入依赖即可,依赖代码如下: <dependency> < ...

  9. Itext生成pdf文件

    来源:https://my.oschina.net/lujianing/blog/894365 1.背景 在某些业务场景中,需要提供相关的电子凭证,比如网银/支付宝中转账的电子回单,签约的电子合同等. ...

随机推荐

  1. Apache CXF 框架结构和基本原理

    CXF旨在为服务创建必要的基础设施,它的整体架构主要由以下几个部分组成: 1.Bus 它是C X F架构的主干,为共享资源提供了一个可配置的场所,作用非常类似于S p r i n g的Applicat ...

  2. iOS 创建xcode插件

    苹果的"一个足以应付所有"策略使得它的产品越来越像一个难以下咽的药丸.尽管苹果已经将一些工作流带给了iOS/OS X的开发者,我们仍然希望通过插件来使得Xcode更加顺手! 虽然苹 ...

  3. nodejs,python,sublime和Eclipse的包管理器

    Python的包管理器叫pip. 首先安装Python运行环境Python 3.7.0:https://www.python.org/downloads/release/python-370/ Pyt ...

  4. uva1611 Crane

    类似煎饼,先把1放到1,之后是子问题   (先放到前一半,再放到开头,两次操作)(任何位置,最多一次就可以放到前一半)) #include<iostream> #include<ve ...

  5. 解决VSCode中使用vetur插件格式化vue文件时,js代码会自动加上冒号和分号

    解决VSCode中使用vetur插件格式化vue文件时,js代码会自动加上冒号和分号 在设置中把"vetur.format.defaultFormatter.js": " ...

  6. Web前端基础怎么学? JavaScript、html、css知识架构图

    以前开发者只要掌握 HTML.CSS.JavaScript 三驾马车就能胜任一份前端的工作了.而现在除了普通的编码以外,还要考虑如何性能优化,如何跨端.跨平台实现功能,尤其是 AI.5G 技术的来临, ...

  7. OpenCV2:第四章 导出图像

    一.简介 一般我们用OpenCV来处理图像数据的时候,OpenCV已经把图像数据包装成一个图像数据类,我们只需要对类成员的像素值进行修改就行了. 但是在Windows开发的WinSDK/MFC中,对图 ...

  8. JAVA基础——网络编程之网络链接

    一.网络编程基本概念 1.OSI与TCP/IP体系模型 2.IP和端口 解决了文章最开始提到的定位的问题. IP在互联网中能唯一标识一台计算机,是每一台计算机的唯一标识(身份证):网络编程是和远程计算 ...

  9. UITextView与UITextfield的区别

    IOS中的UITextView和UITextField都是文本输入控件并都能够调用系统键盘.本次特酷把介绍UITextView和UITextField的区别.简单来说,UITextView和UITex ...

  10. List<T>排序

    List<Student> studentList = new List<Student>(); Student s = new Student(); s.Name = &qu ...