时间:2021-05-19
这篇文章主要介绍了java根据富文本生成pdf文件过程解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
public class PdfUtil { /* * 生成pdf工具类 * wmy 12:40 2019/8/9 * @Param [guideBook, pdfPath] * @return java.lang.Boolean **/ public static Boolean htmlToPdf(GuideBook guideBook, String pdfPath) { try { // 1.新建document Document document = new Document(); // 2.建立一个书写器(Writer)与document对象关联,通过书写器(Writer)可以将文档写入到磁盘中。 //创建 PdfWriter 对象 第一个参数是对文档对象的引用,第二个参数是文件的实际名称,在该名称中还会给出其输出路径。 PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream(pdfPath)); // 3.打开文档 document.open(); //要解析的html //html转换成普通文字,方法如下: org.jsoup.nodes.Document contentDoc = Jsoup.parseBodyFragment(getHtml(guideBook.getTitle())+guideBook.getContent()); org.jsoup.nodes.Document.OutputSettings outputSettings = new org.jsoup.nodes.Document.OutputSettings(); outputSettings.syntax(org.jsoup.nodes.Document.OutputSettings.Syntax.xml); contentDoc.outputSettings(outputSettings); String parsedHtml = contentDoc.outerHtml(); //这儿的font-family不支持汉字,{font-family:仿宋} 是不可以的。 InputStream cssIs = new ByteArrayInputStream("* {font-family: PingFang-SC-Medium.otf;}".getBytes("UTF-8")); //第四个参数是html中的css文件的输入流 //第五个参数是字体提供者,使用系统默认支持的字体时,可以不传。 XMLWorkerHelper.getInstance().parseXHtml(writer, document, new ByteArrayInputStream(parsedHtml.getBytes()), cssIs); // 5.关闭文档 document.close(); } catch (Exception e) { e.printStackTrace(); return false; } return true; } /* * 下载文件 * wmy 9:54 2019/8/12 * @Param [request, response, inputStream, fileName] * @return void **/ public static void download(HttpServletRequest request, HttpServletResponse response, InputStream inputStream, String fileName){ BufferedOutputStream bos = null; try { // 定义输出缓冲 10k byte[] buffer = new byte[10240]; //文件名称的处理 // http://127.0.0.1:5002/guide-book/pdf?id=124 fileName = fileName.replaceAll("[\\pP\\p{Punct}]", "-").replace(" ", "-").replaceAll("[-]+", "-")+".pdf"; String userAgent = request.getHeader("user-agent").toLowerCase(); if (userAgent.contains("msie") || userAgent.contains("like gecko")) { fileName = URLEncoder.encode(fileName, "UTF-8"); } else { fileName = new String(fileName.getBytes("UTF-8"), "iso-8859-1"); } response.setCharacterEncoding("utf-8"); response.setContentType("application/msword"); response.setHeader("Content-Disposition", "attachment; filename=" + fileName); bos = new BufferedOutputStream(response.getOutputStream()); int bytesRead = 0; while ((bytesRead = inputStream.read(buffer)) != -1) { bos.write(buffer, 0, bytesRead); } } catch (Exception e) { e.printStackTrace(); } finally { if (bos != null) { try { bos.close(); } catch (IOException e) { e.printStackTrace(); } } } } /* * 获取html * wmy 10:39 2019/8/12 * @Param [title] * @return java.lang.String **/ public static String getHtml(String title){ return "<h1 align=\"center\">"+title+"</h1>"; }}测试结果:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了Python实现将文本生成二维码的方法。分享给大家供大家参考,具体如下:#coding:utf-8'''Python生成二维码v1.0主要将文本生
1.在线文本生成器BlindTextGenerator:对设计师来说,这是一个简单又好用的文本生成小工具。内含许多种字体,可设置字符的大小,数量,样式,段落的数
如何解析PDF文件在.NET中从PDF文件里提取文本的几种主要方法有:1、Microsoft的IFilter接口和Adobe的IFilter实现;2、iText
小程序富文本解析目前小程序使用比较多的富文本方案一个是小程序自带的rich-text组件,一个是wxPrase。wxPrase原理是把原有的html标签全部解析
给PDF文件页面中添加文本的方法?然后给PDF文件页面中添加竖行文本呢?给PDF文件中的文本旋转方向的方法?软件名称:迅捷pdf转换器v8.5.8.3免费安装版