0

ジャスパーレポートは初めてです。私は iReport 3.5.2 を使用してレポートを正常に作成しました。値が来て (2013-06-12 00:00:00.000)、空のジャスパー レポートが表示されています。私は次の瓶を使用しています:-

commons-beanutils-1.5.jar
commons-collections-2.1.jar
commons-digester-1.7.jar
commons-logging-1.0.2.jar
commons-logging-api-1.0.2.jar
groovy-all-1.5.5.jar
itext-2.1.5.jar
jasperreports-3.5.2.jar
jdt-compiler.jar
jfreechart-1.0.0-rc1.jar
jtds-1.2.jar

以下のサーブレット コードを見つけて、データ付きのレポートを表示するのを手伝ってください。

public String generateReport(HttpServletRequest リクエスト、HttpServletResponse レスポンス)

{
    try
    {
        Connection connection = null;
        JasperReport jasperReport = null;
        JasperPrint jasperPrint=null;
        Date today = null;
        Timestamp date = null;
        String dateString = "";

        connection = EmployeeJDBCUtil.getConnection();
        SimpleDateFormat dateFormat = new SimpleDateFormat("EEE dd/MM/yyyy);
        try {
            dateString = dateFormat.format(new Date());
            today = dateFormat.parse(dateString);
            Timestamp ts = new Timestamp(today.getTime());

        } catch (ParseException e1) {
            e1.printStackTrace();
        }
        Map parameters = new HashMap();
        parameters.put("Date", ts );

       String report_File = "D:/timesheet/EmployeeTimeSheet/WebContent/TimeSheet2.jrxml";
       File report_FileName = new File(report_File);
       if(report_FileName.exists())
       {
           try {

                    JasperDesign jasperDesign = JRXmlLoader.load(report_File);
                    jasperReport = JasperCompileManager.compileReport(jasperDesign);

                    jasperPrint = JasperFillManager.fillReport(jasperReport,parameters,connection);
                    JasperExportManager.exportReportToPdfFile(jasperPrint, "D:/sample.pdf");
                    JasperViewer.viewReport(jasperPrint);

        } catch (Exception e) {
            e.printStackTrace();
        }
   }
      } catch (FileNotFoundException e) {
          e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    } 
    finally
    {
        if(connection != null)
            try {
                connection.close();
            } catch (SQLException e) {
                e.printStackTrace();
            }
    }
    return "index.jsp";
}
4

0 に答える 0