Im using DynamicJasper
to generate an Excel sheet. Im experiencing some difficulty with the apostrophe prepended to my date columns values.
I defined my column like this:
AbstractColumn dateColumn = ColumnBuilder.getNew().setColumnProperty(
title.getUniqueId(), Date.class.getName()).setTitle(title.getTitle()).
setWidth(150).setFixedWidth(false).setPattern("dd MMM yyyy").build();
drb.addColumn(dateColumn);
Then added the appropiate Date values to my map.....
Everything is fine, apart from the fact that each date in the excel column is a string with a leading apostrophe, and the column is not formated as containing dates.
How is the apostrophe getting there? And why is the column not formatting as a Date?
I would appreciate any pointers.
Problem solved.
The issue was with the way i was exporting, i had origionaly told jasperReports to not detect cell type.
So the fix was to set
JRXlsExporterParameter.IS_DETECT_CELL_TYPE
toTRUE
.EG
I think some of you may be using an external file to configure the export, in that case the line to include is
net.sf.jasperreports.export.xls.detect.cell.type=true
Hope it helps :)