user437066
user437066

Reputation: 41

How to parse this date format

Hi folks I am trying to parse this format but not able to it .

Format : Fri Oct 21 2011 08:45:00 GMT 0530 (IST)

SimpleDateFormat("EEE MMM dd yyyy HH:mm:ss zzz ZZZZ")

Can some one explain me what is wrong in this ?

Upvotes: 0

Views: 1395

Answers (1)

Dave Newton
Dave Newton

Reputation: 160191

The format for your zzz is incorrect; the docs show that it needs to be in this format: GMT-05:30.

Also, since you have parentheses around the Z parameter, you need parentheses in your format string.

sdf = new SimpleDateFormat("EEE MMM dd yyyy HH:mm:ss z (Z)")
println sdf.parse("Fri Oct 21 2011 08:45:00 GMT+05:30 (IST)")
> Fri Oct 21 02:45:00 EDT 2011

Upvotes: 5

Related Questions