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?
Asked
Active
Viewed 9,488 times
2

Nishant
- 54,584
- 13
- 112
- 127

Héctor Júdez Sapena
- 5,329
- 3
- 23
- 31
-
Duplicated with http://stackoverflow.com/questions/2597083/illegal-pattern-character-t-when-parsing-a-date-string-to-java-date – Thomas Tran Aug 28 '12 at 10:36
-
possible duplicate of [Converting ISO8601-compliant String to java.util.Date](http://stackoverflow.com/questions/2201925/converting-iso8601-compliant-string-to-java-util-date) – jarnbjo Aug 28 '12 at 10:48
-
Maybe [this](http://www.roseindia.net/java/java-conversion/StringToDate.shtml) link will serve you as a starting point. – Xentatt Aug 28 '12 at 10:34
7 Answers
8
This is ISO 8601 Standard. You may use
SimpleDateFormat simpleFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
to convert this.

Chathuranga Chandrasekara
- 20,548
- 30
- 97
- 138
-
Thanks! It's the first time I had to work with this type of date. – Héctor Júdez Sapena Aug 28 '12 at 10:40
-
-
2
RSS 2.0 format string EEE, dd MMM yyyy HH:mm:ss z
Example: Tue, 28 Aug 2012 06:55:11 EDT
Atom (ISO 8601) format string yyyy-MM-dd'T'HH:mm:ssz
Example:2012-08-28T06:55:11EDT
try {
String str_date = "2012-08-24T09:59:59Z";
DateFormat formatter;
Date date;
formatter = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
date = (Date) formatter.parse(str_date);
System.out.println("Today is " + date);
} catch (ParseException e) {
System.out.println("Exception :" + e);
}

Mohammod Hossain
- 4,134
- 2
- 26
- 37
2
The Z stands for Zulu (UTC) and this is the dateTime.tz format (ISO-8601). So, you should be able to do something like this:
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
There is an example here: example

brimborium
- 9,362
- 9
- 48
- 76
1
import org.joda.time.*;
import org.joda.time.format.*;
public class Test {
public static void main(String[] args) {
String text = "2012-08-24T09:59:59Z";
DateTimeFormatter parser = ISODateTimeFormat.dateTime();
DateTime dt = parser.parseDateTime(text);
DateTimeFormatter formatter = DateTimeFormat.mediumDateTime();
System.out.println(formatter.print(dt));
}
}
or simply check that link str to date

Community
- 1
- 1

Sumit Neema
- 462
- 3
- 18
0
Maybe using the excellent joda time library to convert a String as a Date:
LocalDate myDate = new LocalDate("2012-08-28") // the constructor need an Object but is internally able to parse a String.

BendaThierry.com
- 2,080
- 1
- 15
- 17
-1
// First parse string in pattern "yyyy-MM-dd'T'HH:mm:ss'Z'" to date object.
String dateString1 = "2012-08-24T09:59:59Z";
Date date = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'").parse(dateString1);
// Then format date object to string in pattern "MM/dd/yy 'at' h:mma".
String dateString2 = new SimpleDateFormat("MM/dd/yy 'at' h:mma").format(date);
System.out.println(dateString2); // 08/24/12 at 09:59AM
I think this might be useful to you.

Ami
- 4,241
- 6
- 41
- 75