【JasperReport+Ireport】jasperreport+ireport生成pdf文件并下载

本文详细介绍了一个使用Java生成PDF格式报表的具体实例,通过操作jrxml文件并填充数据,最终利用JasperReports库完成报表的生成与导出。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

话不多说,直接上代码:

    @RequestMapping("/demo01")
    public void test(HttpServletRequest request, HttpServletResponse response) {

        try{
            Map<String, Object> paramsMap = new HashMap<>();
            File logoFile = ResourceUtils.getFile("classpath:static/img/logo.jpg");
            paramsMap.put("logUrl",logoFile.getAbsolutePath());
            List<ApplyForEvaluation> listObj = new ArrayList<>();
            ApplyForEvaluation obj = new ApplyForEvaluation();
            obj.setEvaluateCode("1112845857174");
            obj.setHouseOwner("张三");
            obj.setPropertyNo("1234567890");
            obj.setHouseAddress("1号楼2单元602室");
            obj.setSystemAddress("1号楼2单元602室");
            obj.setBuildingStructure("混凝土");
            obj.setCurrentFloor(12);
            obj.setTotalFloor(33);
            obj.setBuildingArea(189.43);
            obj.setHouseUse("住房");
            obj.setBuildingYear(2001);
            obj.setEvaluateDate("2018年9月3日");
            obj.setUnitPrice(170000);
            obj.setTotalPrice(604.38);
            listObj.add(obj);
            String fileName = "E:\\iReportDemo\\applyForEvaluate.jrxml";//直接操作生成的jrxml文件
            JasperReport jasperReport = JasperCompileManager.compileReport(fileName);//编译jrxml文件
            JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport, paramsMap, new JRBeanCollectionDataSource(listObj));
            //设定输出格式
            OutputStream ouputStream = response.getOutputStream();
            response.setContentType("application/pdf");
            response.setCharacterEncoding("UTF-8");
            response.setHeader("Content-Disposition", "attachment; filename=" + URLEncoder.encode(obj.getEvaluateCode(), "UTF-8") + ".pdf");
            // 使用JRPdfExproter导出器导出pdf
            JRPdfExporter exporter = new JRPdfExporter();
            exporter.setExporterInput(new SimpleExporterInput(jasperPrint));
            exporter.setExporterOutput(new SimpleOutputStreamExporterOutput(ouputStream));
            SimplePdfExporterConfiguration configuration = new SimplePdfExporterConfiguration();
            exporter.setConfiguration(configuration);
            exporter.exportReport();
        }catch (Exception e){
            e.printStackTrace();
        }


    }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值