java - How to pickup excel date as it is without changing format using poi -
i reading cell value using poi in java. suppose enter date 10.10.2015 in case when set celltype numeric , getdatecellvalue() returns me date in calendar format nov 10, 2015 mm:ss xyz. apart tried using below code snippet
new dataformatter().formatcellvalue(cell) and return 10/10/15. want read date in poi(in java code) text mean 10.10.2015.
Comments
Post a Comment