I'm trying to parse 2014-11-28T13:46:23-08:00
to a java.util.Date
For the simpledateformat so far I've tried:
yyyy-MM-dd'T'HH:mm:ss
yyyy-MM-dd HH:mm:ss
yyyy-MM-dd
works but I need at-least precision to the minute.
What pattern should I be using to parse this date?