iteye_14095 2012-06-04 08:11
浏览 261
已采纳

JasperReport保存报表类型

JasperReport jasperReport = (JasperReport) JRLoader.loadObjectFromFile("report1.jasper");
JasperPrint jasperprint2 = JasperFillManager.fillReport(jasperReport, new HashMap(), new JRBeanCollectionDataSource(DailySalesDataSource.getBeanCollection()));
JRViewer jr = new JRViewer(jasperprint2);
JFrame jf = new JFrame();
jf.setSize(500, 500);
jf.add(jr);
jf.setVisible(true);

这样,会弹出一个窗口,点窗口上面的保存按钮时,只能保存.jrprint这个文件,请问如何激活所有保存文件类型?

  • 写回答

1条回答 默认 最新

  • cbjcry 2012-06-05 08:28
    关注

    [code="java"]private void toPdfbytes(HttpServletResponse response,byte[] bb,String filename) throws SystemException {
    response.reset();
    response.setContentType("APPLICATION/OCTET-STREAM");
    response.setHeader("Content-Disposition","attachment; filename=\"" + filename + "\"");
    response.setContentLength(bb.length);
    try {
    ServletOutputStream ouputStream = response.getOutputStream();
    ouputStream.write(bb, 0, bb.length);
    ouputStream.flush();
    ouputStream.close();
    } catch (IOException e) {
    e.printStackTrace();
    throw new SystemException(e.getMessage());
    }
    }[/code]

    response.setContentType这段,对应不同的类型!

    或者你直接使用:
    //导出为Html

    //JasperExportManager.exportReportToHtmlFile(jasperPrint, "c:/area.html");

    //导出为pdf

    //OutputStream output = new FileOutputStream(new File("c:/catalog.pdf")); //JasperExportManager.exportReportToPdfStream(jasperPrint,output);

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 一部手机能否同时用不同的app进入不同的直播间?
  • ¥15 没输出运行不了什么问题
  • ¥20 输入import torch显示Intel MKL FATAL ERROR,系统驱动1%,: Cannot load mkl_intel_thread.dll.
  • ¥15 点云密度大则包围盒小
  • ¥15 nginx使用nfs进行服务器的数据共享
  • ¥15 C#i编程中so-ir-192编码的字符集转码UTF8问题
  • ¥15 51嵌入式入门按键小项目
  • ¥30 海外项目,如何降低Google Map接口费用?
  • ¥15 fluentmeshing
  • ¥15 手机/平板的浏览器里如何实现类似荧光笔的效果
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部