java 导出pdf wkhtmltopdf 载入PDF时发生错误 stream must have data

女生的网名这么多〃 提交于 2020-08-17 06:20:40

原理是把需要填充打印的内容填充到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,这个时候需要手动执行一下命令

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!