I am getting this "createdAt":{"__type":"Date","iso":"2013-05-04T16:24:42.701Z"}
as part of JSON from my backend. How can I convert it to Java Date object. in pseudo:
Date d = ISODateFromJSONToJavaDate(jsonObj);
progress: is there any way to format iso type date String to java date?
Thanks!