You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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?
The text was updated successfully, but these errors were encountered: