原理是把需要填充打印的内容填充到freemarker模板文件ftl,然后生成html文件,然后java调用cmd命令行
把html生成pdf。总结起来就是一次填充两次写文件流一次读文件。
首先是要安装插件: https://wkhtmltopdf.org/downloads.html
// 创建配置
Configuration cfg = new Configuration(new Version(2, 3, 0));
Process p = null;
try {
// 指定模板存放的路径
cfg.setDirectoryForTemplateLoading(new File(basePath + "/pdf/ftl"));
cfg.setDefaultEncoding("UTF-8");
// 从上面指定的模板目录中加载对应的模板文件
Template temp = cfg.getTemplate(templateftl);
// 将生成的内容写入contractTemplate .html中
String file1 = basePath + "/pdf/html/experReportView.html";
File file = new File(file1);
if (!file.exists()) file.createNewFile();
Writer out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file), StandardCharsets.UTF_8));
temp.process(variables, out);
out.flush();
String reportName = "C://report//report_"+account+"_"+id+".pdf";
//convertLocation是插件安装地址:C:/wkhtmltopdf/bin/wkhtmltopdf.exe
String[] cmdarray = {convertLocation, file.getAbsolutePath(), reportName};
p = Runtime.getRuntime().exec(cmdarray);
Thread.sleep(3000);
log.error("cmd命令 "+convertLocation+" "+file.getAbsolutePath()+" "+reportName);
//存在问题:cmd执行是异步的,当pdf尚未生成成功的时候,输出流就已重定向到页面,这时候流是空的。解决方法:代码和页面都添加3s延迟。最好预览的时候判断pdf文件是否生成。
载入PDF时发生错误:stream must have data
这个错误主要是pdf文件未生成导致的。未生成的原因可能是:
1、代码错误
2、代码未成功调用wkhtmltopdf.exe,这个时候需要手动执行一下命令
来源:oschina
链接:https://my.oschina.net/osokra/blog/4493077