我正在使用DynamicReports API來構建報告。有關語言環境的Java DynamicReports格式日期
我設置報告區域設置和格式化報告的日期列,但日期總是格式化像10/12/2009 10時54分44秒 AM無論什麼語言環境是。
代碼如下:
rep.setTemplate(Templates.reportTemplate.setLocale(res.getLocale()));
...
if (rs.getString(i).contains("00:00:00"))
rep.addColumn(col.column(title, name, type.dateType()));
else
rep.addColumn(col.column(title, name, type.dateYearToSecondType()));
有沒有辦法來關於向語言環境報告自動格式的日期或者已經我使用自定義的ValueFormatter?
您是否嘗試將其作爲'JRParameter.REPORT_LOCALE'添加到參數映射中? –