I want to parse this json string into date
"startDateTime":"2014-08-10T20:08:45.0218Z"
and then parse it to another date format.
I thought using this:
Gson gson = new GsonBuilder().setDateFormat("dd/MM HH:mm ???").create;
but I'm not sure how what is the format of "2014-08-10T20:08:45.0218Z"
is it yyyy-mm-dd ???