I tried to parse this string 20130718T090000Z using SimpleDateFormat. I do like this:
String timeString= "20130718T090000Z";
DateFormat dateFormat = new SimpleDateFormat("yyyyMMdd'T'HHmmssZ");
Date date= dateFormat.parse(timeString);
I received an Unparsable error. Referencing from here http://docs.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html#rfc822timezone I found I did nothing wrong, or did I? Tks.