html与css入门经典doc,HTML+CSS入门 flying-saucer如何利用HTML来生成PDF文件

本篇教程介绍了HTML+CSS入门 flying-saucer如何利用HTML来生成PDF文件,希望阅读本篇文章以后大家有所收获,帮助大家HTML+CSS入门。

<

1、导入maven依赖

9.1.0

     org.xhtmlrenderer      flying-saucer-pdf      ${flyingSaucer.version}        org.xhtmlrenderer      flying-saucer-core      ${flyingSaucer.version} 

2、利用Html来导出简单的PDF文件

@RequestMapping("/pdfLoad")

public void pdfLoad(@RequestParam("pdfHtmlData")String pdfHtmlData,@RequestParam("fileName")String fileName,@RequestParam("borswerInfo")String borswerInfo,

HttpServletRequest request,HttpServletResponse response){

log.info("pdfHtmlData:"+pdfHtmlData+";fileName:"+fileName+";borswerInfo:"+borswerInfo);

InputStream in=null;

OutputStream out=null;

try {

String tempPdfFile=FileUploadRestController.class.getResource("/").getPath();

tempPdfFile=tempPdfFile+"/public/upload/"+System.currentTimeMillis()+".pdf";

File dest=new File(tempPdfFile);

//检测是否存在目录

if(!dest.getParentFile().exists()){

dest.getParentFile().mkdirs();

}

FileOutputStream tempout=new FileOutputStream(tempPdfFile);

//构建一个html页面(前台通过js来控制传递)

//根据Html页面来构建一个Document

DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();

Document doc = builder.parse(new ByteArrayInputStream(pdfHtmlData.getBytes("UTF-8")));

//根据Document来填充iTextRenderer

ITextRenderer iTextRenderer=new ITextRenderer();

iTextRenderer.setDocument(doc, null);

ITextFontResolver fontResolver = iTextRenderer.getFontResolver();

String pdfFontPath=FileUploadRestController.class.getResource("/plugins/pdf-font/simsun.ttf").getPath();//request.getSession().getServletContext().getRealPath("upload/pdf/font");

fontResolver.addFont(pdfFontPath,BaseFont.IDENTITY_H,BaseFont.NOT_EMBEDDED);

iTextRenderer.layout();

//利用iTextRenderer生成pdf文件

iTextRenderer.createPDF(tempout);

tempout.flush();

tempout.close();

//文件下载

File downloadFile = new File(tempPdfFile);

//文件名

JSONObject borswerInfoObj=JSONObject.parseObject(borswerInfo);

if (null!=borswerInfoObj&&"ie".equals(borswerInfoObj.get("browser"))) {

fileName=java.net.URLEncoder.encode(fileName, "UTF-8");

fileName=fileName.replace("+", "%20"); //IE下文件名称带空格会转换为加号

response.setHeader("charset", "charset=UTF-8");

} else {

fileName=new String(fileName.getBytes(),Charset.forName("ISO8859-1"));

response.setHeader("charset", "charset=ISO8859-1");

}

//输出设置

response.setHeader("content-type", "application/octet-stream");

response.setContentType("application/octet-stream");

response.setHeader("Content-Disposition","attachment;filename="+fileName);

response.setContentLengthLong(downloadFile.length());

in=new FileInputStream(downloadFile);

out=response.getOutputStream();

IOUtils.copy(in,out);

response.flushBuffer();

}catch (Exception e) {

e.printStackTrace();

}finally {

IOUtils.closeQuietly(in);

IOUtils.closeQuietly(out);

}

}

3、pdfHtmlData参数为

//导出PDF文件

$(‘body‘).delegate(".pdfLoad","click",function(){

WebIndex.queryParam.limit=10000;

Logger.info(WebIndex.queryParam);

$.ajax({type:‘post‘,url:webIface.rootUrl+‘/fileManager/list/‘,dataType: ‘json‘,data:WebIndex.queryParam}).done(function(data){

Logger.info(data);

if(data.code==1){

var ifile=$(‘body‘).find(‘#load-pdf‘);

var fileName="文件上传和下载列表.pdf";

//构造pdf打印html数据

var pdfHtmlData=‘‘;

pdfHtmlData+=‘‘;

pdfHtmlData+=‘ 

‘;

pdfHtmlData+=‘ 

2015-2016年度信息统计‘;

pdfHtmlData+=‘  

pdfHtmlData+=‘  body{font-family:SimSun;margin: 5px;font-size:12px;text-align:center;}‘;

pdfHtmlData+=‘  table{border:0;border-top:1px solid #000;border-left:1px solid #000;width:100%;line-height:20px}‘;

pdfHtmlData+=‘  table thead{background-color:#EEE}‘;

pdfHtmlData+=‘  table td{border:0;border-bottom:1px solid #000;border-right:1px solid #000;padding:5px;white-space:nowrap}‘;

pdfHtmlData+=‘  .title{padding-bottom:20px;font-size:16px;text-align:center;width:100%;line-height:20px;}‘;

pdfHtmlData+=‘  .fl{padding-left:20px;text-align:left;}‘;

pdfHtmlData+=‘   @page{size:297mm 210mm;}‘;

pdfHtmlData+=‘  ‘;

pdfHtmlData+=‘ ‘;

pdfHtmlData+=‘ 

‘;

pdfHtmlData+=‘  

文件上传和下载列表统计(第1页)
‘;

pdfHtmlData+=‘  

pdfHtmlData+=‘    标号文件名上传人上传时间下载次数‘;

$.each(data.list,function(num,detail){

if(num!=0&&num%20==0){

pdfHtmlData+=‘  

‘;

pdfHtmlData+=‘  

pdfHtmlData+=‘  

文件上传和下载列表统计(第‘+(num/20+1)+‘页)
‘;

pdfHtmlData+=‘  

pdfHtmlData+=‘    标号文件名上传人上传时间下载次数‘;

}

pdfHtmlData+=‘

‘+(num+1)+‘‘+detail.fileName+‘‘+detail.uploader+‘‘+detail.loadDate+‘‘+detail.downLoadCount+‘‘;

});

pdfHtmlData+=‘  

‘;

pdfHtmlData+=‘ ‘;

pdfHtmlData+=‘‘;

var borswerInfo=JSON.stringify(getBrowserInfo());

var time=Date.parse(new Date())/1000;

if(ifile.length==0){

var loadhtml=‘‘;

loadhtml+=‘

‘;

loadhtml+=‘  ‘;

loadhtml+=‘  ‘;

loadhtml+=‘  ‘;

loadhtml+=‘  ‘;

loadhtml+=‘

‘;

$(‘body‘).append(loadhtml);

ifile=$(‘body‘).find(‘#load-pdf‘);

}

ifile.find(‘.load-pdfHtmlData‘).attr("value",pdfHtmlData);

ifile.find(‘.load-fileName‘).attr("value",fileName);

ifile.find(‘.load-borswerInfo‘).attr("value",borswerInfo);

ifile.find(‘.load-time‘).attr("value",time);

ifile.submit();

}

}).fail(function(erorEvent){

alert(erorEvent.statusText);

});

WebIndex.queryParam.limit=8;

});

本文由职坐标整理发布,欢迎关注职坐标WEB前端HTML/CSS频道,获取更多HTML/CSS知识!

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值