I have date String as below:
Fri, 19 Jul 2013 01:30:22 GMT Thu, 12 Sep 2013 19:19:18 GMT
And I want to convert to below format:
You can make like this.
String newDate = date.getYear()+"/"+date.getMonth()+"/"+date.getDay() and ect.
or you can write your own convert method
String myConvert(Date date) { return date.getYear()+"/"+date.getMonth()+"/"+date.getDay()+ect. }