I have a file in which nth column has a date. say like below(Each column is divided by ',')
1234,3-23,34,kjiio,20131015,AS
While I am parsong this data assuming that date is 'YYYYMMDD', I am able to get good results. But my problem is the date is not unique, it has below formats,
2013-10-15
10152013
2013-10-15T00:00:00.000
so my requirement is to make all the records in that file to be in single format or is there any java api that takes a date of any format as aboce and gives in a format that I requested.
Thanks!