-
-
Notifications
You must be signed in to change notification settings - Fork 136
Closed
Labels
Description
My options:
PoijiOptions options = PoijiOptions.PoijiOptionsBuilder.settings() .preferNullOverDefault(true) .dateTimeFormatter(DateTimeFormatter.ofPattern("dd.MM.yyyy HH:mm:ss")) .build();
Known, that excel stores date and date-time values as doubles..
I set custom dateTimeFormatter and expect it in PoijiDataFormatter#formatRawCellContents, but this method uses format from Excel

And DefaultCasting#localDateTimeValue method will try to parse string with Excel-format to my own

Don't you think that using dateTimeFormatter from PoijiOptions in PoijiDataFormatter#formatRawCellContents for date and date-time cells will improve dev experience?