徽标图像仅显示在页面标题上的第一页jasper报告中

时间:2015-03-18 14:17:46

标签: java jasper-reports

我有一个独特的案例,我在Jasper的PageHeader Band上有一个Logo,我期待它,因为它在页面标题上,它应该打印在每个页面上,但它只在第一页上打印。如果我从ireport设计器运行它,同样的Jrxml会在所有页面上生成徽标,但在我的java应用程序中,它只在第一页上生成徽标。我有什么问题吗?

我的java方法:

public void formatreport(String foracid, String reportDir, String fromdate, String todate, String currdate, int pid, String suffix) {
        Connection conn = null;
        try {
            conn = db.prepareConn();
            Map parameters = new HashMap();
            ClassLoader classLoader = getClass().getClassLoader();
            InputStream logourl = classLoader.getResourceAsStream("/com/sim/bulk/jrxml/logo.jpg");
            parameters.put("account", foracid);
            parameters.put("from_date", fromdate);
            parameters.put("to_date", todate);
            parameters.put("period_id", pid);
            parameters.put("suffix", suffix);
            parameters.put("logo", logourl);
            log.debug("Bulk statement Parameters: account:" + foracid + "\nfrom_date:" + fromdate + "\nto_date:" + todate + "\nperiod_id:" + pid);
            InputStream url = classLoader.getResourceAsStream("com/sim/bulk/jrxml/Bulkstatement.jrxml");
            JasperReport jasperReport = JasperCompileManager.compileReport(url);
            JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport, parameters, conn);
            reportDestination = reportDir + "/Statement_" + foracid + "_" + currdate + ".pdf";
            JasperExportManager.exportReportToPdfFile(jasperPrint, reportDestination);
        } catch (JRException asd) {

            log.fatal(asd.getMessage());

        } finally {
            try {
                if (conn != null) {
                    conn.close();
                }
            } catch (SQLException asd) {

                System.out.println(asd.getMessage());

            }
        }
    }

和jrxml的摘录:

<pageHeader>
        <band height="162" splitType="Stretch">     
            <image onErrorType="Blank" evaluationTime="Now">
                <reportElement uuid="a49076f0-b945-4742-bb15-737b2a927da2" x="12" y="12" width="74" height="50"/>
                <imageExpression><![CDATA[$P{logo}]]></imageExpression>
            </image>
        </band>
    </pageHeader>

请帮忙。

1 个答案:

答案 0 :(得分:4)

为图像设置isUsingCache =“true”。否则,图像会尝试多次从输入流中读取数据,但这不起作用。

或者你可以直接使用资源路径(“/com/sim/bulk/jrxml/logo.jpg”)作为图像表达式,在大多数情况下,JasperReports可以从类加载器中加载它。