




版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
第如何利用java實(shí)現(xiàn)生成PDF文件目錄1.PDF文件簡(jiǎn)介2.生成PDF2.1基于freemarker框架實(shí)現(xiàn)HTML轉(zhuǎn)PDF2.1.1引入jar包依賴:2.1.2創(chuàng)建html模板test_template:2.1.3獲取HTML內(nèi)容2.1.4生成PDF文檔總結(jié)
1.PDF文件簡(jiǎn)介
PDF是可移植文檔格式,是一種電子文件格式,具有許多其他電子文檔格式無(wú)法相比的優(yōu)點(diǎn)。PDF文件格式可以將文字、字型、格式、顏色及獨(dú)立于設(shè)備和分辨率的圖形圖像等封裝在一個(gè)文件中。該格式文件還可以包含超文本鏈接、聲音和動(dòng)態(tài)影像等電子信息,支持特長(zhǎng)文件,集成度和安全可靠性都較高。在系統(tǒng)開(kāi)發(fā)中通常用來(lái)生成比較正式的報(bào)告或者合同類的電子文檔。
2.生成PDF
2.1基于freemarker框架實(shí)現(xiàn)HTML轉(zhuǎn)PDF
2.1.1引入jar包依賴:
dependency
groupIdjectlombok/groupId
artifactIdlombok/artifactId
version1.18.20/version
/dependency
!--/artifact/com.itextpdf/html2pdf--
dependency
groupIdcom.itextpdf/groupId
artifactIdhtml2pdf/artifactId
version4.0.3/version
/dependency
!--springboot項(xiàng)目請(qǐng)?zhí)砑哟艘蕾?-
dependency
groupIdorg.springframework.boot/groupId
artifactIdspring-boot-starter-freemarker/artifactId
/dependency
!--非springboot項(xiàng)目請(qǐng)?zhí)砑哟艘蕾?-
dependency
groupIdorg.freemarker/groupId
artifactIdfreemarker/artifactId
version2.3.30/version
/dependency
2.1.2創(chuàng)建html模板test_template:
!DOCTYPEhtml
htmllang="en"
head
metacharset="UTF-8"/
titleTitle/title
style
body{font-family:SimSun;}
.title{align-content:center;text-align:center;}
.signature{float:right}
/style
/head
body
div
h1標(biāo)題/h1
h4副標(biāo)題/h4
span當(dāng)前時(shí)間:${date_time}/span
div日期:${date}/div
/div
/body
/html
2.1.3獲取HTML內(nèi)容
當(dāng)HTML模板存放在系統(tǒng)文件夾
StringtemplateDirectory="D:\\";//系統(tǒng)文件夾路徑如:D:\
當(dāng)HTML模板存放在項(xiàng)目resources/templates目錄
ClassLoaderclassLoader=PdfUtilTest.class.getClassLoader();
URLresource=classLoader.getResource("templates");
StringtemplateDirectory=resource.toURI().getPath();
示例代碼:
importcom.itextpdf.html2pdf.ConverterProperties;
importcom.itextpdf.html2pdf.HtmlConverter;
importcom.itextpdf.layout.font.FontProvider;
importfreemarker.template.Configuration;
importfreemarker.template.Template;
importlombok.extern.slf4j.Slf4j;
importjava.io.*;
import.URL;
importjava.time.LocalDateTime;
importjava.time.format.DateTimeFormatter;
importjava.util.HashMap;
importjava.util.Map;
@Slf4j
publicclassPdfUtilTest{
*獲取模板內(nèi)容
*@paramtemplateDirectory模板文件夾
*@paramtemplateName模板文件名
*@paramparamMap模板參數(shù)
*@return
*@throwsException
privatestaticStringgetTemplateContent(StringtemplateDirectory,StringtemplateName,MapString,ObjectparamMap)throwsException{
Configurationconfiguration=newConfiguration(Configuration.DEFAULT_INCOMPATIBLE_IMPROVEMENTS);
try{
configuration.setDirectoryForTemplateLoading(newFile(templateDirectory));
}catch(Exceptione){
System.out.println("--exception--");
Writerout=newStringWriter();
Templatetemplate=configuration.getTemplate(templateName,"UTF-8");
cess(paramMap,out);
out.flush();
out.close();
returnout.toString();
publicstaticvoidmain(String[]args)throwsException{
MapString,ObjectparamMap=newHashMap();
DateTimeFormatterdateTimeFormatter=DateTimeFormatter.ofPattern("yyyy-MM-ddHH:mm:ss");
paramMap.put("date_time",dateTimeFormatter.format(LocalDateTime.now()));
paramMap.put("date",dateTimeFormatter.format(LocalDateTime.now()).substring(0,10));
ClassLoaderclassLoader=PdfUtilTest.class.getClassLoader();
URLresource=classLoader.getResource("templates");
StringtemplateDirectory=resource.toURI().getPath();
StringtemplateContent=PdfUtilTest.getTemplateContent(templateDirectory,"test_template.html",paramMap);
System.out.println(templateContent);
2.1.4生成PDF文檔
示例代碼:
/**
*HTML轉(zhuǎn)PDF
*@paramcontenthtml內(nèi)容
*@paramoutPath輸出pdf路徑
*@return是否創(chuàng)建成功
publicstaticbooleanhtml2Pdf(Stringcontent,StringoutPath){
try{
ConverterPropertiesconverterProperties=newConverterProperties();
converterProperties.setCharset("UTF-8");
FontProviderfontProvider=newFontProvider();
fontProvider.addSystemFonts();
converterProperties.setFontProvider(fontProvider);
HtmlConverter.convertToPdf(content,newFileOutputStream(outPath),converterProperties);
}catch(Exceptione){
log.error("生成模板內(nèi)容失敗,{}",e);
returnfalse;
returntrue;
*HTML轉(zhuǎn)PDF
*@paramcontenthtml內(nèi)容
*@returnPDF字節(jié)數(shù)組
publicstaticbyte[]html2Pdf(Stringcontent){
ByteArrayOutputStreamoutputStream=newByteArrayOutputStream();;
try{
ConverterPropertiesconverterProperties=newConverterProperties();
converterProperties.setCharset("UTF-8");
FontProviderfontProvider=newFontProvider();
fontProvider.addSystemFonts();
converterProperties.setFontProvider(fontProvider);
HtmlConverter.convertToPdf(content,outputStream,converterProperties);
}catch(Exceptione){
log.error("生成PDF失敗,{}",e);
returnoutputStream.toByteArray();
publicstaticvoidmain(String[]args)throwsException{
MapString,ObjectparamMap=newHashMap();
DateTimeFormatterdateTimeFormatter=DateTimeFormatter.ofPattern("yyyy-MM-ddHH:mm:ss");
paramMap.put("date_time",dateTimeFormatter.format(LocalDateTime.now()));
paramMap.put("date",dateTimeFormatter.format(LocalDate
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 公共政策對(duì)青少年成長(zhǎng)的支持試題及答案
- 跨國(guó)經(jīng)驗(yàn)對(duì)公共政策局勢(shì)的啟示試題及答案
- 項(xiàng)目管理中的成果與評(píng)估試題及答案
- 網(wǎng)絡(luò)工程師考試真題深度解析試題及答案
- 公共政策分析中的定量研究方法運(yùn)用試題及答案
- 西方政治制度中的社會(huì)公平試題及答案
- 政策分析的基本工具與方法試題及答案
- 機(jī)電工程考試全智攻略與試題及答案
- 機(jī)電工程綜合考試模擬題試題及答案2025
- 軟件設(shè)計(jì)師考試分析能力試題及答案
- 基于《山海經(jīng)》神祇形象的青少年解壓文具設(shè)計(jì)研究
- 教育與美好人生知到智慧樹(shù)章節(jié)測(cè)試課后答案2024年秋鄭州師范學(xué)院
- DB15T 3727-2024溫拌再生瀝青混合料超薄磨耗層碳排放核算技術(shù)規(guī)程
- 2025年新高考?xì)v史預(yù)測(cè)模擬試卷黑吉遼蒙卷(含答案解析)
- 傳染病疫情報(bào)告制度及報(bào)告流程
- DBJ50-T -212-2015 機(jī)制排煙氣道系統(tǒng)應(yīng)用技術(shù)規(guī)程
- 世界讀書(shū)日主題班會(huì)模板5
- 水庫(kù)建設(shè)投資估算與資金籌措
- 金屬雕花板保溫施工方案
- 涉密計(jì)算機(jī)保密培訓(xùn)
- T-GXAS 767-2024 尿液中汞的測(cè)定 氫化物發(fā)生原子熒光法
評(píng)論
0/150
提交評(píng)論