I have arrayLists of Dates which is in String format then how can I sort this arraylists,
ArrayList aryBeginDate; ArrayList aryDu
You can use a Comparator to sort the list. Something like this:
Comparator
Collections.sort(aryListBean, new Comparator() { @Override public int compare(RowItem r1, RowItem r2) { // Place your compare logic here } });