gpt4 book ai didi

java - JasperReports 服务器 : Getting "java.util.GregorianCalendar not configured" error when using java. util.Calendar 在 scriptlet

转载 作者:太空宇宙 更新时间:2023-11-04 08:07:20 26 4
gpt4 key购买 nike

我有使用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中配置此类?

最佳答案

经过对上述问题的研究,我自己设法解决了。我已经研究了 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 来从输入中获取所需的结果。

关于java - JasperReports 服务器 : Getting "java.util.GregorianCalendar not configured" error when using java. util.Calendar 在 scriptlet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11860109/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com