I'm stuggling to convert String 'Tue Jan 01 01:01:00 GMT 2013' into a date format. I tried to use simple date class, but it didn't succeed.
String st=list[1];
Date start = new SimpleDateFormat("EEE MM dd yyyy HH:mm:ss zzz yyyy").parse(list[1]);
Maybe someone can find my mistake or recommend something else. thanx in advance