zoukankan      html  css  js  c++  java
  • iReport+JasperReport+JSP 输出HTML方式预览

      <%@ page language="java" contentType="text/html; charset=UTF-8"
          pageEncoding="UTF-8"%>
      <%@ page
          import="java.io.*,
                  net.sf.jasperreports.engine.*,
                  net.sf.jasperreports.engine.util.*,
                  java.util.*,java.sql.*,
                  net.sf.jasperreports.engine.export.*"%>
      <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
     <html>
     <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
     <title>Insert title here</title>
     </head>
     <body>
     <%
         File reportFile = new File(application.getRealPath("jasper/Test2.jasper"));
         JasperReport jasperReport = (JasperReport) JRLoader.loadObject(reportFile.getPath());
         Map parameters = new HashMap();
         parameters.put("para1""AAA");
         Class.forName("com.mysql.jdbc.Driver");
         Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/phpcms""root""root");
         JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport, parameters, conn);
         JRHtmlExporter exporter = new JRHtmlExporter();
         exporter.setParameter(JRExporterParameter.JASPER_PRINT, jasperPrint);
         exporter.setParameter(JRExporterParameter.OUTPUT_WRITER, out);
         
         exporter.setParameter(JRHtmlExporterParameter.IS_USING_IMAGES_TO_ALIGN, Boolean.FALSE);
         exporter.exportReport();
         out.flush();    
         conn.close();
    %>
    </body>
    </html>

  • 相关阅读:
    VS2017使用inet_ntoa()产生错误的解决方法
    ET框架:如何运行ET-Demo
    ProtoBuf入门
    AssetBundle入门
    UML图写法
    Visual Studio小技巧-引用项目外部的类
    UnityECS(一)UnityECS学习资料
    关于如何利用MySQL Workbench导入Excel表格
    SublimeText3插件安装(未完更新)
    Unity中Animator的2DSprite动画控制与使用
  • 原文地址:https://www.cnblogs.com/Neil223/p/3572508.html
Copyright © 2011-2022 走看看