国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

java根據(jù)模板動(dòng)態(tài)生成PDF

layman / 3142人閱讀

摘要:一需求說(shuō)明根據(jù)業(yè)務(wù)需要,需要在服務(wù)器端生成可動(dòng)態(tài)配置的文檔,方便數(shù)據(jù)可視化查看。能配置動(dòng)態(tài)的模板,正好解決了樣式動(dòng)態(tài)渲染和排版問(wèn)題。包負(fù)責(zé)模板之外的額外信息填寫(xiě),這里主要是頁(yè)眉頁(yè)腳的定制。包的畫(huà)圖工具包,目前只有一個(gè)線形圖。

一、需求說(shuō)明:根據(jù)業(yè)務(wù)需要,需要在服務(wù)器端生成可動(dòng)態(tài)配置的PDF文檔,方便數(shù)據(jù)可視化查看。

二、解決方案:
iText+FreeMarker+JFreeChart生成可動(dòng)態(tài)配置的PDF文檔
iText有很強(qiáng)大的PDF處理能力,但是樣式和排版不好控制,直接寫(xiě)PDF文檔,數(shù)據(jù)的動(dòng)態(tài)渲染很麻煩。
FreeMarker能配置動(dòng)態(tài)的html模板,正好解決了樣式、動(dòng)態(tài)渲染和排版問(wèn)題。
JFreeChart有這方便的畫(huà)圖API,能畫(huà)出簡(jiǎn)單的折線、柱狀和餅圖,基本能滿足需要。

三、實(shí)現(xiàn)功能:

   1、能動(dòng)態(tài)配置PDF文檔內(nèi)容
   2、支持中文字體顯示的動(dòng)態(tài)配置
   3、設(shè)置自定義的頁(yè)眉頁(yè)腳信息
   4、能動(dòng)態(tài)生成業(yè)務(wù)圖片
   5、完成PDF的分頁(yè)和圖片的嵌入

四、主要代碼結(jié)構(gòu)說(shuō)明:

   1、component包:PDF生成的組件 對(duì)外提供的是PDFKit工具類(lèi)和HeaderFooterBuilder接口,其中PDFKit負(fù)責(zé)PDF的生成,HeaderFooterBuilder負(fù)責(zé)自定義頁(yè)眉頁(yè)腳信息。
   2、builder包:負(fù)責(zé)PDF模板之外的額外信息填寫(xiě),這里主要是頁(yè)眉頁(yè)腳的定制。
   3、chart包:JFreeChart的畫(huà)圖工具包,目前只有一個(gè)線形圖。
   4、test包:測(cè)試工具類(lèi)
   5、util包:FreeMarker等工具類(lèi)。

五、關(guān)鍵代碼說(shuō)明:

1、模板配置

  


    
    
    
    



${templateName}

iText官網(wǎng):${ITEXTUrl}

FreeMarker官網(wǎng):${freeMarkerUrl}

JFreeChart教程:${JFreeChartUrl}

列表值:
<#list scores as item>

${item}

第二頁(yè)開(kāi)始了

百度圖標(biāo)

氣溫變化對(duì)比圖

2、獲取模板內(nèi)容并填充數(shù)據(jù)

/**
 * @description 獲取模板
 */
public static String getContent(String fileName,Object data){

    String templatePath=getPDFTemplatePath(fileName);//根據(jù)PDF名稱查找對(duì)應(yīng)的模板名稱
    String templateFileName=getTemplateName(templatePath);
    String templateFilePath=getTemplatePath(templatePath);
    if(StringUtils.isEmpty(templatePath)){
        throw new FreeMarkerException("templatePath can not be empty!");
    }
    try{
        Configuration config = new Configuration(Configuration.VERSION_2_3_25);//FreeMarker配置
        config.setDefaultEncoding("UTF-8");
        config.setDirectoryForTemplateLoading(new File(templateFilePath));//注意這里是模板所在文件夾,不是文件
        config.setTemplateExceptionHandler(TemplateExceptionHandler.RETHROW_HANDLER);
        config.setLogTemplateExceptions(false);
        Template template = config.getTemplate(templateFileName);//根據(jù)模板名稱 獲取對(duì)應(yīng)模板
        StringWriter writer = new StringWriter();
        template.process(data, writer);//模板和數(shù)據(jù)的匹配
        writer.flush();
        String html = writer.toString();
        return html;
    }catch (Exception ex){
        throw new FreeMarkerException("FreeMarkerUtil process fail",ex);
    }
}
    

3、導(dǎo)出模板到PDF文件

/**
     * @description     導(dǎo)出pdf到文件
     * @param fileName  輸出PDF文件名
     * @param data      模板所需要的數(shù)據(jù)
     *
     */
public String exportToFile(String fileName,Object data){
     String htmlData= FreeMarkerUtil.getContent(fileName, data);//獲取FreeMarker的模板數(shù)據(jù)
    if(StringUtils.isEmpty(saveFilePath)){
        saveFilePath=getDefaultSavePath(fileName);//設(shè)置PDF文件輸出路徑
    }
    File file=new File(saveFilePath);
    if(!file.getParentFile().exists()){
        file.getParentFile().mkdirs();
    }
    FileOutputStream outputStream=null;
    try{
        //設(shè)置輸出路徑
        outputStream=new FileOutputStream(saveFilePath);
        //設(shè)置文檔大小
        Document document = new Document(PageSize.A4);//IText新建PDF文檔
        PdfWriter writer = PdfWriter.getInstance(document, outputStream);//設(shè)置文檔和輸出流的關(guān)系

        //設(shè)置頁(yè)眉頁(yè)腳
        PDFBuilder builder = new PDFBuilder(headerFooterBuilder,data);
        builder.setPresentFontSize(10);
        writer.setPageEvent(builder);

        //輸出為PDF文件
        convertToPDF(writer,document,htmlData);
    }catch(Exception ex){
        throw new PDFException("PDF export to File fail",ex);
    }finally{
        IOUtils.closeQuietly(outputStream);
    }
    return saveFilePath;

}
    

4、測(cè)試工具類(lèi)

 public  String createPDF(Object data, String fileName){
            //pdf保存路徑
            try {
                //設(shè)置自定義PDF頁(yè)眉頁(yè)腳工具類(lèi)
                PDFHeaderFooter headerFooter=new PDFHeaderFooter();
                PDFKit kit=new PDFKit();
                kit.setHeaderFooterBuilder(headerFooter);
                //設(shè)置輸出路徑
                kit.setSaveFilePath("/Users/fgm/Desktop/pdf/hello.pdf”);//設(shè)置出書(shū)路徑
                String saveFilePath=kit.exportToFile(fileName,data);
                return  saveFilePath;
            } catch (Exception e) {
                log.error("PDF生成失敗{}", ExceptionUtils.getFullStackTrace(e));
                return null;
            }
        
        }
    
  public static void main(String[] args) {
         ReportKit360 kit=new ReportKit360();
                TemplateBO templateBO=new TemplateBO();//配置模板數(shù)據(jù)
                templateBO.setTemplateName("Hello iText! Hello freemarker! Hello jFreeChart!");
                templateBO.setFreeMarkerUrl("http://www.zheng-hang.com/chm/freemarker2_3_24/ref_directive_if.html");
                templateBO.setITEXTUrl("http://developers.itextpdf.com/examples-itext5");
    
    templateBO.setJFreeChartUrl("http://www.yiibai.com/jfreechart/jfreechart_referenced_apis.html");
        templateBO.setImageUrl("https://ss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/logo/bd_logo1_31bdc765.png");
        
        
             List scores=new ArrayList();
                scores.add("90");
                scores.add("95");
                scores.add("98");
                templateBO.setScores(scores);
                List lineList=getTemperatureLineList();
                TemperatureLineChart lineChart=new TemperatureLineChart();
                String picUrl=lineChart.draw(lineList,0);//自定義的數(shù)據(jù)畫(huà)圖
                templateBO.setPicUrl(picUrl);
                String path= kit.createPDF(templateBO,"hello.pdf");
            System.out.println(path);
        
        }

六、生成效果圖:

七、項(xiàng)目完整代碼

1、github地址:https://github.com/superad/pdf-kit
2、項(xiàng)目git地址:git@github.com:superad/pdf-kit.git

八、遇到的坑:

1、FreeMarker配置模板文件樣式,在實(shí)際PDF生成過(guò)程中,可能會(huì)出現(xiàn)一些不一致的情形,目前解決方法,就是換種方式調(diào)整樣式。

2、字體文件放在resource下,在打包時(shí)會(huì)報(bào)錯(cuò),運(yùn)行mvn -X compile 會(huì)看到詳細(xì)錯(cuò)誤:
這是字體文件是二進(jìn)制的,而maven項(xiàng)目中配置了資源文件的過(guò)濾,不能識(shí)別二進(jìn)制文件導(dǎo)致的,
plugins中增加下面這個(gè)配置就好了:


    
        
            src/main/resources
            true
        
    
    
    
        
            org.apache.maven.plugins
            maven-resources-plugin
            2.7
            
                UTF-8
                
                    ttf
                
            
        
    

3、PDF分頁(yè)配置:

  在ftl文件中,增加分頁(yè)標(biāo)簽: 

九、 完整maven配置:


  
 
        com.itextpdf
        itextpdf
        5.4.2
     
 
    com.itextpdf.tool
    xmlworker
    5.4.1


    com.itextpdf
    itext-asian
    5.2.0


    org.xhtmlrenderer
    flying-saucer-pdf
    9.0.3



    org.freemarker
    freemarker
    2.3.26-incubating



    jfreechart
    jfreechart
    1.0.0



    ch.qos.logback
    logback-core
    1.0.13


    ch.qos.logback
    logback-classic
    1.0.13


    ch.qos.logback
    logback-access
    1.0.13


    org.slf4j
    slf4j-api
    1.7.5


    org.slf4j
    log4j-over-slf4j
    1.7.21



    com.google.guava
    guava
    20.0


    org.projectlombok
    lombok
    1.14.8


    org.apache.commons
    commons-io
    1.3.2


    commons-lang
    commons-lang
    2.6



    javax.servlet
    servlet-api
    2.5

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://specialneedsforspecialkids.com/yun/50713.html

相關(guān)文章

  • java根據(jù)模板動(dòng)態(tài)生成PDF

    摘要:一需求說(shuō)明根據(jù)業(yè)務(wù)需要,需要在服務(wù)器端生成可動(dòng)態(tài)配置的文檔,方便數(shù)據(jù)可視化查看。能配置動(dòng)態(tài)的模板,正好解決了樣式動(dòng)態(tài)渲染和排版問(wèn)題。包負(fù)責(zé)模板之外的額外信息填寫(xiě),這里主要是頁(yè)眉頁(yè)腳的定制。包的畫(huà)圖工具包,目前只有一個(gè)線形圖。 一、需求說(shuō)明:根據(jù)業(yè)務(wù)需要,需要在服務(wù)器端生成可動(dòng)態(tài)配置的PDF文檔,方便數(shù)據(jù)可視化查看。 二、解決方案:iText+FreeMarker+JFreeChart生...

    liukai90 評(píng)論0 收藏0
  • spring boot itextPdf根據(jù)模板生成pdf文件

    摘要:在開(kāi)發(fā)一些平臺(tái)中會(huì)遇到將數(shù)據(jù)庫(kù)中的數(shù)據(jù)渲染到模板文件中的場(chǎng)景,用完全動(dòng)態(tài)生成文件的太過(guò)復(fù)雜,通過(guò)可以比較簡(jiǎn)單的完成數(shù)據(jù)渲染工作模板的表單域數(shù)據(jù)需定義名稱獲取輸出流下載相關(guān)申請(qǐng)表下載設(shè)置響應(yīng)設(shè)置響應(yīng)文件名稱申請(qǐng)表設(shè)置文件名稱獲取輸出流 在開(kāi)發(fā)一些平臺(tái)中會(huì)遇到將數(shù)據(jù)庫(kù)中的數(shù)據(jù)渲染到PDF模板文件中的場(chǎng)景,用itextPdf完全動(dòng)態(tài)生成PDF文件的太過(guò)復(fù)雜,通過(guò)itextPdf/AcroFi...

    fuyi501 評(píng)論0 收藏0
  • Spring Boot集成JasperReports生成PDF文檔

    摘要:由于工作需要,要實(shí)現(xiàn)后端根據(jù)模板動(dòng)態(tài)填充數(shù)據(jù)生成文檔,通過(guò)技術(shù)選型,使用來(lái)設(shè)計(jì)模板,結(jié)合工具庫(kù)來(lái)調(diào)用渲染生成文檔。 由于工作需要,要實(shí)現(xiàn)后端根據(jù)模板動(dòng)態(tài)填充數(shù)據(jù)生成PDF文檔,通過(guò)技術(shù)選型,使用Ireport5.6來(lái)設(shè)計(jì)模板,結(jié)合JasperReports5.6工具庫(kù)來(lái)調(diào)用渲染生成PDF文檔。本人文采欠缺,寫(xiě)作能力差,下面粗略的介紹其使用步驟,若有不對(duì)的地方,望大家莫噴,謝謝! 一、使...

    Miracle 評(píng)論0 收藏0
  • 常用的6款Java開(kāi)源報(bào)表制作工具

    摘要:本文為大家推薦款常用的開(kāi)源報(bào)表制作工具,供開(kāi)發(fā)者學(xué)習(xí)參考。一個(gè)基于的開(kāi)源報(bào)表工具,它可以在環(huán)境下像其他報(bào)表工具一樣來(lái)制作報(bào)表,支持和文件輸出格式,是當(dāng)前開(kāi)發(fā)者最常用的報(bào)表工具。使用開(kāi)發(fā)的,并使用作為報(bào)表生成引擎。 本文為大家推薦6款常用的Java開(kāi)源報(bào)表制作工具,供開(kāi)發(fā)者學(xué)習(xí)、參考。 1.Aspose.Cells for JasperReports一個(gè)基于Java的開(kāi)源報(bào)表工具,它可以...

    QLQ 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<