StreamResource,ByteArray问题

时间:2014-06-17 11:05:56

标签: java stream jasper-reports byte

我无法理解为什么我的代码不会一直运行。 我正在打开一个jasper报告,但是在前4次打开时,报告被缓存或代码没有执行(新StreamResource中的代码不会先执行4次)。新的StreamResource.StreamSource()只在5次运行为什么?前4次我得到旧的,缓存的,临时或我事件不知道什么是旧的参数的PDF文件。

也许有人知道这个问题?

public static void open(final String fileName, final HashMap<String, Object> data ) {
    mylog.pl("@@@ Param's print @ open Report: Filename:" + fileName);
    try {
        Iterator<?> i = data.keySet().iterator();
        while (i.hasNext()) {
            String id = i.next().toString();
            String value = (data.get(id) != null) ? data.get(id).toString() : "null";
            mylog.pl(" id: " + id + " value: " + value);
        }
    } catch (Exception e) {
        e.printStackTrace();
        mylog.pl(e.getMessage());
    }
    StreamResource.StreamSource source = null;
    source = new StreamResource.StreamSource() {
        public InputStream getStream() {
            byte[] b = null;
            InputStream reportStream = null;
            try {
                reportStream = new BufferedInputStream(new FileInputStream(PATH + fileName + JASPER));
                b = JasperRunManager.runReportToPdf(reportStream, data, new JREmptyDataSource());
            } catch (JRException ex) {
                ex.printStackTrace();
                mylog.pl("Err @ JR" + ex.getMessage());
            } catch (FileNotFoundException e) {
                e.printStackTrace();
                Utils.showMessage(SU.NOTFOUND);
                return null;
            }
            return new ByteArrayInputStream(b);
        }
    };
    StreamResource resource = null;
    resource = new StreamResource(source, fileName + PDF);
    resource.setMIMEType("application/pdf");
    Page p = Page.getCurrent();
    p.open(resource, "Report", false);
}

1 个答案:

答案 0 :(得分:0)

这里is答案

我一直使用resource.setCacheTime(0);,但确实需要resource.setCacheTime(1000);,因为

  

理论上&lt; = 0禁用缓存。在实践中Chrome,Safari(和,       显然,IE)都忽略&lt; = 0。