hi all,
I am getting the data as follows and i want it to be sorted in descending order by year wise, month wise , day wise and then time wise:
INPUT
2013-02-07 09:02:00.0
2013-03-28 10:54:00.0
2012-26-15 10:54:00.0
2012-26-15 09:12:00.0
2013-02-20 08:12:00.0
OUTPUT SHOULD BE AS:
2012-26-15 09:12:00.0
2012-26-15 10:54:00.0
2013-02-07 09:02:00.0
2013-02-20 08:12:00.0
2013-03-28 10:54:00.0
Anyone please tell me how to do this in
java