I have a String from Json like this 2015-05-07T17:00:00Z
I use Eclipse to build android application
how can I parse it to Date? I don't know what is "T" and "Z".
I usually convert a Date like this..but how with string like "2015-05-07T17:00:00Z"?
or must I using split to split "-" ,"T", ":" and "Z"?
Date today = new Date()
SimpleDateFormat formatter = new SimpleDateFormat("dd/MM/yyyy")
Date todayf = formatter.format(today)