1

我有使用iReport的设计报告。在这份报告中,我有一个自定义函数,它以年和月作为输入,并返回该月的最大天数。

此方法在内部使用java.util.Calendar API 来获取给定月份和年份的最大天数。

此报告适用于iReport,但是一旦我在JasperReports Server中导入此报告,我就会收到此异常。

Error Message

java.lang.IllegalStateException: Processor of type com.jaspersoft.jasperserver.war.cascade.handlers.converters.DataConverter for class 

java.util.GregorianCalendar not configured

如何在JasperReports Server中解决此问题?如何在JasperReports Server中配置此类?

4

1 回答 1

1

在研究了上述问题后,我自己设法解决了。我查看了 JasperServer 的数据转换器配置,但没有可用于 Calendar 类的数据转换器。

我发现最好的方法是创建自定义类,在其中编写要使用 java Calendar 类执行的整个逻辑并将其打包到 jar 中。现在使用直接使用那个 jar API 来解决你的目的。

就我而言,我想计算报告期(我生成报告的时间段)。对我来说,这个结果的输入是我生成报告的月份和年份。所以下面是我写的代码片段

public static String calculateReportingPeriod(String year, String month,
            String dateFormat) {
        String reportingPeriod = new String();
        Calendar calendar = Calendar.getInstance();
        if (year == null || year.isEmpty()) {
            Integer lyear = Calendar.getInstance().get(Calendar.YEAR);
            year = lyear.toString();
        }
        if (month == null || month.isEmpty()) {
            Integer lmonth = Calendar.getInstance().get(Calendar.MONTH);
            /**
             * -1 because report in generate for previous month
             */
            lmonth = lmonth - 1;
            month = lmonth.toString();
        } else {
            Integer lmonth = Integer.parseInt(month);
            lmonth = lmonth - 1;
            month = lmonth.toString();
        }
        if (dateFormat == null || dateFormat.isEmpty()) {
            dateFormat = DATE_FORMAT;
        }
        /**
         * calculating max days in the given month and given year
         */
        calendar.set(Calendar.YEAR, Integer.parseInt(year));
        calendar.set(Calendar.MONTH, Integer.parseInt(month));
        Integer maxDays = calendar.getActualMaximum(Calendar.DAY_OF_MONTH);

        calendar.set(Integer.parseInt(year), Integer.parseInt(month),
                START_DATE);
        Date reportingStartDt = calendar.getTime();
        reportingPeriod = new SimpleDateFormat(dateFormat)
                .format(reportingStartDt);
        reportingPeriod = reportingPeriod.concat(EMPTY_STRING);
        reportingPeriod = reportingPeriod.concat(DASH_SEPERATOR);
        reportingPeriod = reportingPeriod.concat(EMPTY_STRING);
        calendar.set(Calendar.DATE, maxDays);
        Date reportingEndDt = calendar.getTime();
        reportingPeriod = reportingPeriod.concat(new SimpleDateFormat(
                dateFormat).format(reportingEndDt));
        return reportingPeriod;
    }

然后我在 iReports 和 JasperServer 中都使用了这个 jar 从输入中获得所需的结果。

于 2012-08-14T03:31:45.940 回答