I am receiving this from the server and I don´t understand what the T and Z means, 2012-08-24T09:59:59Z What’s the correct SimpleDateFormat pattern to convert this string to a Date object?
I am receiving this from the server and I don´t understand what the T
Share
This is ISO 8601 Standard. You may use
SimpleDateFormat simpleFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");to convert this.